diff --git a/CHANGELOG.md b/CHANGELOG.md
index 442b72f7..0b62725f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,24 @@
# RELEASES
+## LinkKit 5.0.0 — 2023-11-08
+### Requirements
+
+| Name | Version |
+|------|---------|
+| Xcode | >= 15.0.1 |
+| iOS | >= 14.0 |
+
+### Changes
+
+- Drop support for iOS 11, 12, & 13.
+- Reduce iOS SDK size from 15 megabytes to 11 megabytes.
+- Remove deprecated support for public key authentication.
+- Remove deprecated continue from method (this method no longer needs to be called for OAuth redirects).
+- Remove deprecated continue method (this method no longer needs to be called for OAuth redirects).
+- Remove deprecated open with OpenOptions function.
+- Make webview inspectable on iOS >= 16.4.
+- Add Privacy Manifest for `UserDefaults` use.
+
## LinkKit 4.7.0 — 2023-11-03
### Requirements
diff --git a/LinkKit.xcframework/Info.plist b/LinkKit.xcframework/Info.plist
index 90776f23..7e99ddb0 100644
--- a/LinkKit.xcframework/Info.plist
+++ b/LinkKit.xcframework/Info.plist
@@ -5,6 +5,8 @@
AvailableLibraries
+ BinaryPath
+ LinkKit.framework/LinkKit
LibraryIdentifier
ios-arm64_x86_64-simulator
LibraryPath
@@ -20,31 +22,35 @@
simulator
+ BinaryPath
+ LinkKit.framework/LinkKit
LibraryIdentifier
- ios-arm64_x86_64-maccatalyst
+ ios-arm64
LibraryPath
LinkKit.framework
SupportedArchitectures
arm64
- x86_64
SupportedPlatform
ios
- SupportedPlatformVariant
- maccatalyst
+ BinaryPath
+ LinkKit.framework/Versions/A/LinkKit
LibraryIdentifier
- ios-arm64
+ ios-arm64_x86_64-maccatalyst
LibraryPath
LinkKit.framework
SupportedArchitectures
arm64
+ x86_64
SupportedPlatform
ios
+ SupportedPlatformVariant
+ maccatalyst
CFBundlePackageType
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Headers/LinkKit-Swift.h b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Headers/LinkKit-Swift.h
index 100a38a6..c522bc3e 100644
--- a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Headers/LinkKit-Swift.h
+++ b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Headers/LinkKit-Swift.h
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
-// Generated by Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
+// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
#ifndef LINKKIT_SWIFT_H
#define LINKKIT_SWIFT_H
#pragma clang diagnostic push
@@ -23,7 +23,6 @@
# include
#endif
-#pragma clang diagnostic ignored "-Wduplicate-method-match"
#pragma clang diagnostic ignored "-Wauto-import"
#if defined(__OBJC__)
#include
@@ -32,10 +31,30 @@
#include
#include
#include
+#include
+#include
+#include
+#include
#else
#include
#include
#include
+#include
+#endif
+#if defined(__cplusplus)
+#if defined(__arm64e__) && __has_include()
+# include
+#else
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
+# ifndef __ptrauth_swift_value_witness_function_pointer
+# define __ptrauth_swift_value_witness_function_pointer(x)
+# endif
+# ifndef __ptrauth_swift_class_method_pointer
+# define __ptrauth_swift_class_method_pointer(x)
+# endif
+#pragma clang diagnostic pop
+#endif
#endif
#if !defined(SWIFT_TYPEDEFS)
@@ -71,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# if __has_feature(objc_class_property)
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
# else
-# define SWIFT_CLASS_PROPERTY(...)
+# define SWIFT_CLASS_PROPERTY(...)
# endif
#endif
-
-#if __has_attribute(objc_runtime_name)
-# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
-#else
-# define SWIFT_RUNTIME_NAME(X)
+#if !defined(SWIFT_RUNTIME_NAME)
+# if __has_attribute(objc_runtime_name)
+# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
+# else
+# define SWIFT_RUNTIME_NAME(X)
+# endif
#endif
-#if __has_attribute(swift_name)
-# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
-#else
-# define SWIFT_COMPILE_NAME(X)
+#if !defined(SWIFT_COMPILE_NAME)
+# if __has_attribute(swift_name)
+# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
+# else
+# define SWIFT_COMPILE_NAME(X)
+# endif
#endif
-#if __has_attribute(objc_method_family)
-# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
-#else
-# define SWIFT_METHOD_FAMILY(X)
+#if !defined(SWIFT_METHOD_FAMILY)
+# if __has_attribute(objc_method_family)
+# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
+# else
+# define SWIFT_METHOD_FAMILY(X)
+# endif
#endif
-#if __has_attribute(noescape)
-# define SWIFT_NOESCAPE __attribute__((noescape))
-#else
-# define SWIFT_NOESCAPE
+#if !defined(SWIFT_NOESCAPE)
+# if __has_attribute(noescape)
+# define SWIFT_NOESCAPE __attribute__((noescape))
+# else
+# define SWIFT_NOESCAPE
+# endif
#endif
-#if __has_attribute(ns_consumed)
-# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
-#else
-# define SWIFT_RELEASES_ARGUMENT
+#if !defined(SWIFT_RELEASES_ARGUMENT)
+# if __has_attribute(ns_consumed)
+# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
+# else
+# define SWIFT_RELEASES_ARGUMENT
+# endif
#endif
-#if __has_attribute(warn_unused_result)
-# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
-#else
-# define SWIFT_WARN_UNUSED_RESULT
+#if !defined(SWIFT_WARN_UNUSED_RESULT)
+# if __has_attribute(warn_unused_result)
+# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
+# else
+# define SWIFT_WARN_UNUSED_RESULT
+# endif
#endif
-#if __has_attribute(noreturn)
-# define SWIFT_NORETURN __attribute__((noreturn))
-#else
-# define SWIFT_NORETURN
+#if !defined(SWIFT_NORETURN)
+# if __has_attribute(noreturn)
+# define SWIFT_NORETURN __attribute__((noreturn))
+# else
+# define SWIFT_NORETURN
+# endif
#endif
#if !defined(SWIFT_CLASS_EXTRA)
-# define SWIFT_CLASS_EXTRA
+# define SWIFT_CLASS_EXTRA
#endif
#if !defined(SWIFT_PROTOCOL_EXTRA)
-# define SWIFT_PROTOCOL_EXTRA
+# define SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_ENUM_EXTRA)
-# define SWIFT_ENUM_EXTRA
+# define SWIFT_ENUM_EXTRA
#endif
#if !defined(SWIFT_CLASS)
# if __has_attribute(objc_subclassing_restricted)
@@ -137,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
# endif
#endif
-
#if !defined(SWIFT_PROTOCOL)
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
#endif
-
#if !defined(SWIFT_EXTENSION)
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
#endif
-
#if !defined(OBJC_DESIGNATED_INITIALIZER)
# if __has_attribute(objc_designated_initializer)
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
# else
-# define OBJC_DESIGNATED_INITIALIZER
+# define OBJC_DESIGNATED_INITIALIZER
# endif
#endif
#if !defined(SWIFT_ENUM_ATTR)
-# if defined(__has_attribute) && __has_attribute(enum_extensibility)
+# if __has_attribute(enum_extensibility)
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
# else
-# define SWIFT_ENUM_ATTR(_extensibility)
+# define SWIFT_ENUM_ATTR(_extensibility)
# endif
#endif
#if !defined(SWIFT_ENUM)
@@ -187,14 +216,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(SWIFT_DEPRECATED_MSG)
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
#endif
-#if __has_feature(attribute_diagnose_if_objc)
-# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
-#else
-# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
+#if !defined(SWIFT_DEPRECATED_OBJC)
+# if __has_feature(attribute_diagnose_if_objc)
+# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
+# else
+# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
+# endif
#endif
#if defined(__OBJC__)
#if !defined(IBSegueAction)
-# define IBSegueAction
+# define IBSegueAction
#endif
#endif
#if !defined(SWIFT_EXTERN)
@@ -207,26 +238,42 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(SWIFT_CALL)
# define SWIFT_CALL __attribute__((swiftcall))
#endif
+#if !defined(SWIFT_INDIRECT_RESULT)
+# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
+#endif
+#if !defined(SWIFT_CONTEXT)
+# define SWIFT_CONTEXT __attribute__((swift_context))
+#endif
+#if !defined(SWIFT_ERROR_RESULT)
+# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
+#endif
#if defined(__cplusplus)
-#if !defined(SWIFT_NOEXCEPT)
# define SWIFT_NOEXCEPT noexcept
-#endif
#else
-#if !defined(SWIFT_NOEXCEPT)
# define SWIFT_NOEXCEPT
#endif
+#if !defined(SWIFT_C_INLINE_THUNK)
+# if __has_attribute(always_inline)
+# if __has_attribute(nodebug)
+# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
+# else
+# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
+# endif
+# else
+# define SWIFT_C_INLINE_THUNK inline
+# endif
#endif
-#if defined(__cplusplus)
-#if !defined(SWIFT_CXX_INT_DEFINED)
-#define SWIFT_CXX_INT_DEFINED
-namespace swift {
-using Int = ptrdiff_t;
-using UInt = size_t;
-}
+#if defined(_WIN32)
+#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
+# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
+#endif
+#else
+#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
+# define SWIFT_IMPORT_STDLIB_SYMBOL
#endif
#endif
#if defined(__OBJC__)
-#if __has_feature(modules)
+#if __has_feature(objc_modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
@@ -285,19 +332,15 @@ SWIFT_CLASS("_TtC7LinkKit27EmbeddedSearchAndSelectView")
-
-
@class PLKLinkTokenConfiguration;
@class NSError;
@protocol PLKHandler;
-@class PLKLinkPublicKeyConfiguration;
@class NSString;
/// Plaid is the main entrypoint for the Plaid Link iOS SDK.
SWIFT_CLASS("_TtC7LinkKit8PLKPlaid")
@interface PLKPlaid : NSObject
+ (id _Nullable)createWithLinkTokenConfiguration:(PLKLinkTokenConfiguration * _Nonnull)linkTokenConfiguration error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
-+ (id _Nullable)createWithLinkPublicKeyConfiguration:(PLKLinkPublicKeyConfiguration * _Nonnull)linkPublicKeyConfiguration error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
/// The version of the Plaid Link iOS SDK.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull sdkVersion;)
+ (NSString * _Nonnull)sdkVersion SWIFT_WARN_UNUSED_RESULT;
@@ -305,12 +348,12 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No
@end
-#endif
-#if defined(__cplusplus)
#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
+#if defined(__cplusplus)
+#endif
#pragma clang diagnostic pop
#endif
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Headers/PLKPlaid.h b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Headers/PLKPlaid.h
index ff088713..9aa24573 100644
--- a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Headers/PLKPlaid.h
+++ b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Headers/PLKPlaid.h
@@ -566,92 +566,12 @@ typedef void(^PLKOnEventHandler)(PLKLinkEvent *);
@end
-@interface PLKOAuthNonceConfiguration : NSObject
-
-@property(nonatomic, readonly, copy) NSString *nonce;
-@property(nonatomic, readonly) NSURL *redirectUri;
-
-- (instancetype)initWithNonce:(NSString *)nonce
- redirectUri:(NSURL *)redirectUri NS_DESIGNATED_INITIALIZER;
-- (instancetype)init NS_UNAVAILABLE;
-+ (instancetype)createWithNonce:(NSString *)nonce
- redirectUri:(NSURL *)redirectUri;
-
-@end
-
-@interface PLKLinkPublicKeyConfigurationToken : NSObject
-
-@property(nonatomic, readonly, copy) NSString *publicKey;
-@property(nonatomic, readonly, nullable, copy) NSString *paymentToken;
-@property(nonatomic, readonly, nullable, copy) NSString *publicToken;
-@property(nonatomic, readonly, nullable, copy) NSString *depositSwitchToken;
-
-+ (instancetype)createWithPaymentToken:(NSString *)paymentToken
- publicKey:(NSString *)publicKey;
-
-+ (instancetype)createWithPublicToken:(NSString *)publicToken
- publicKey:(NSString *)publicKey;
-
-+ (instancetype)createWithDepositSwitchToken:(NSString *)depositSwitchToken
- publicKey:(NSString *)publicKey;
-
-+ (instancetype)createWithPublicKey:(NSString *)publicKey;
-
-@end
-
typedef NS_ENUM(NSInteger, PLKEnvironment) {
PLKEnvironmentProduction,
PLKEnvironmentDevelopment,
PLKEnvironmentSandbox,
};
-@interface PLKLinkPublicKeyConfiguration : NSObject
-
-@property(nonatomic, readonly, copy) NSString *clientName;
-@property(nonatomic, readonly) PLKEnvironment environment;
-
-@property(nonatomic, copy) PLKLanguage *language;
-@property(nonatomic, strong) PLKLinkPublicKeyConfigurationToken *token;
-@property(nonatomic, copy) NSArray *countryCodes;
-
-@property(nonatomic) PLKOnSuccessHandler onSuccess;
-@property(nonatomic, strong) PLKOnExitHandler onExit;
-@property(nonatomic, strong) PLKOnEventHandler onEvent;
-
-@property(nonatomic, copy) NSArray> *accountSubtypes;
-
-@property(nonatomic, nullable) NSURL *webhook;
-
-@property(nonatomic, nullable) PLKOAuthNonceConfiguration *oauthConfiguration;
-
-@property(nonatomic, nullable, copy) NSString *userLegalName;
-@property(nonatomic, nullable, copy) NSString *userEmailAddress;
-@property(nonatomic, nullable, copy) NSString *userPhoneNumber;
-
-@property(nonatomic, nullable, copy) NSString *linkCustomizationName;
-
-/// An array of PLKProduct enum cases wrapped in an NSNumber.
-@property(nonatomic, readwrite, copy) NSArray *products;
-
-- (instancetype)initWithClientName:(NSString *)clientName
- environment:(PLKEnvironment)environment
- products:(NSArray *)products
- language:(PLKLanguage *)language
- token:(PLKLinkPublicKeyConfigurationToken *)token
- countryCodes:(NSArray *)countryCodes
- onSuccess:(PLKOnSuccessHandler)successHandler;
-- (instancetype)init NS_UNAVAILABLE;
-
-+ (instancetype)createWithClientName:(NSString *)clientName
- environment:(PLKEnvironment)environment
- products:(NSArray *)products
- language:(PLKLanguage *)language
- token:(PLKLinkPublicKeyConfigurationToken *)token
- countryCodes:(NSArray *)countryCodes
- onSuccess:(PLKOnSuccessHandler)successHandler;
-
-@end
-
/// Both `PLKPresentationHandler` and `PLKDismissalHandler` clsoures take the Plaid Link View Controller to be
/// presented or dismissed as a parameter.
typedef void(^PLKPresentationHandler)(UIViewController *);
@@ -661,31 +581,13 @@ typedef void(^PLKDismissalHandler)(UIViewController *);
- (void)openWithContextViewController:(UIViewController *)viewController;
-- (void)openWithContextViewController:(UIViewController *)viewController
- options:(NSDictionary *)options;
-
-- (void)openWithPresentationHandler:(PLKPresentationHandler)presentationHandler DEPRECATED_MSG_ATTRIBUTE("openWithPresentationHandler: is deprecated in favor openWithPresentationHandler:dismissalHandler:");
- (void)openWithPresentationHandler:(PLKPresentationHandler)presentationHandler
dismissalHandler:(PLKDismissalHandler)dismissalHandler;
-- (void)openWithPresentationHandler:(PLKPresentationHandler)presentationHandler
-options:(NSDictionary *)options DEPRECATED_MSG_ATTRIBUTE("openWithPresentationHandler:options: is deprecated in favor openWithPresentationHandler:dismissalHandler:options:");
-
-- (void)openWithPresentationHandler:(PLKPresentationHandler)presentationHandler
- dismissalHandler:(PLKDismissalHandler)dismissalHandler
- options:(NSDictionary *)options;
-
-- (void)createEmbeddedView:(PLKPresentationHandler)presentationHandler
- dismissalHandler:(PLKDismissalHandler)dismissalHandler
- errorCompletion:(void (^) (NSError *))onError
- successCompletion:(void (^) (UIView *))onSuccess;
-
-- (void) createEmbeddedView:(UIViewController *)viewController
- errorCompletion:(void (^) (NSError *))onError
- successCompletion:(void (^) (UIView *))onSuccess;
+- (UIView *)createEmbeddedView:(PLKPresentationHandler)presentationHandler
+ dismissalHandler:(PLKDismissalHandler)dismissalHandler;
-- (NSError * __nullable)continueFromRedirectUri:(NSURL *)redirectUri DEPRECATED_MSG_ATTRIBUTE("continueFromRedirectUri: is deprecated in favor continueWithRedirectUri:");
-- (void)continueWithRedirectUri:(NSURL *)redirectUri DEPRECATED_MSG_ATTRIBUTE("This function will be removed in LinkKit V5.0.0. This function should only be used if your app crashed or was killed during an out-of-process OAuth flow. Use `resumeAfterTermination(from redirectUri: URL)`");
+- (UIView *) createEmbeddedView:(UIViewController *)viewController;
- (void)resumeAfterTermination:(NSURL *)redirectUri;
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Info.plist b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Info.plist
index 040d7be3..9c542b30 100644
Binary files a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Info.plist and b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Info.plist differ
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/LinkKit b/LinkKit.xcframework/ios-arm64/LinkKit.framework/LinkKit
index d6123b17..0a9bfbae 100755
Binary files a/LinkKit.xcframework/ios-arm64/LinkKit.framework/LinkKit and b/LinkKit.xcframework/ios-arm64/LinkKit.framework/LinkKit differ
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.abi.json b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.abi.json
index 983e2e30..d1d77603 100644
--- a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.abi.json
+++ b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.abi.json
@@ -11,768 +11,786 @@
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "PlaidLinkViewController",
- "printedName": "PlaidLinkViewController",
+ "name": "PresentationMethod",
+ "printedName": "PresentationMethod",
"children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(log:)",
+ "kind": "Var",
+ "name": "viewController",
+ "printedName": "viewController",
"children": [
{
- "kind": "TypeNominal",
- "name": "PlaidLinkViewController",
- "printedName": "LinkKit.PlaidLinkViewController",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "hasDefaultArg": true,
- "usr": "s:3LogAAV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PresentationMethod.Type) -> (UIKit.UIViewController) -> LinkKit.PresentationMethod",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> LinkKit.PresentationMethod",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PresentationMethod.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit05PlaidA14ViewControllerC3logAC3LogAEV_tcfc",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC3logAC3LogAEV_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18PresentationMethodO14viewControlleryACSo06UIViewF0CcACmF",
+ "mangledName": "$s7LinkKit18PresentationMethodO14viewControlleryACSo06UIViewF0CcACmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Var",
+ "name": "custom",
+ "printedName": "custom",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PlaidLinkViewController?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PresentationMethod.Type) -> (@escaping (UIKit.UIViewController) -> (), @escaping (UIKit.UIViewController) -> ()) -> LinkKit.PresentationMethod",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(@escaping (UIKit.UIViewController) -> (), @escaping (UIKit.UIViewController) -> ()) -> LinkKit.PresentationMethod",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "((UIKit.UIViewController) -> (), (UIKit.UIViewController) -> ())",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "PlaidLinkViewController",
- "printedName": "LinkKit.PlaidLinkViewController",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
+ "name": "Metatype",
+ "printedName": "LinkKit.PresentationMethod.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18PresentationMethodO6customyACySo16UIViewControllerCc_yAFctcACmF",
+ "mangledName": "$s7LinkKit18PresentationMethodO6customyACySo16UIViewControllerCc_yAFctcACmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
- },
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit18PresentationMethodO",
+ "mangledName": "$s7LinkKit18PresentationMethodO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ExitMetadata",
+ "printedName": "ExitMetadata",
+ "children": [
{
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "kind": "Var",
+ "name": "status",
+ "printedName": "status",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC11viewDidLoadyyF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
+ "HasInitialValue",
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "transitionTo",
- "printedName": "transitionTo(pane:)",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit05PlaidA14ViewControllerC12transitionTo4paneySo06UIViewE0C_tF",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC12transitionTo4paneySo06UIViewE0C_tF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "log",
- "printedName": "log",
- "children": [
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
{
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit05PlaidA14ViewControllerC3log33_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LL3LogAFVvp",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC3log33_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LL3LogAFVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "$__lazy_storage_$_presentedPaneViewController",
- "printedName": "$__lazy_storage_$_presentedPaneViewController",
+ "name": "institution",
+ "printedName": "institution",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "UIKit.UIViewController?",
+ "printedName": "LinkKit.Institution?",
"children": [
{
"kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit05PlaidA14ViewControllerC031$__lazy_storage_$_presentedPanedE033_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LLSo06UIViewE0CSgvp",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC031$__lazy_storage_$_presentedPanedE033_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LLSo06UIViewE0CSgvp",
+ "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvp",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
"HasStorage",
- "Final"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 1,
- "hasStorage": true
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PlaidLinkViewController",
- "printedName": "LinkKit.PlaidLinkViewController",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
- },
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.Institution?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.Institution?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SearchAndSelectViewController",
- "printedName": "SearchAndSelectViewController",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SearchAndSelectViewController",
- "printedName": "LinkKit.SearchAndSelectViewController",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
{
- "kind": "TypeNominal",
- "name": "SearchAndSelectViewModel",
- "printedName": "Workflow.SearchAndSelectViewModel",
- "usr": "s:8Workflow24SearchAndSelectViewModelC"
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit29SearchAndSelectViewControllerC4withAC8Workflow0cdeF5ModelC_tcfc",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC4withAC8Workflow0cdeF5ModelC_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Var",
+ "name": "linkSessionID",
+ "printedName": "linkSessionID",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.SearchAndSelectViewController?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "SearchAndSelectViewController",
- "printedName": "LinkKit.SearchAndSelectViewController",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC5coderACSgSo7NSCoderC_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC11viewDidLoadyyF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
+ "HasInitialValue",
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tableView",
- "printedName": "tableView(_:didSelectRowAt:)",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
{
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)tableView:didSelectRowAtIndexPath:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC05tableF0_03didE5RowAtySo07UITableF0C_10Foundation9IndexPathVtF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "tableView:didSelectRowAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "numberOfSections",
- "printedName": "numberOfSections(in:)",
+ "kind": "Var",
+ "name": "requestID",
+ "printedName": "requestID",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)numberOfSectionsInTableView:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC16numberOfSections2inSiSo07UITableF0C_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "numberOfSectionsInTableView:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
+ "HasInitialValue",
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tableView",
- "printedName": "tableView(_:numberOfRowsInSection:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)tableView:numberOfRowsInSection:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC05tableF0_21numberOfRowsInSectionSiSo07UITableF0C_SitF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "tableView:numberOfRowsInSection:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tableView",
- "printedName": "tableView(_:cellForRowAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITableViewCell",
- "printedName": "UIKit.UITableViewCell",
- "usr": "c:objc(cs)UITableViewCell"
- },
- {
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)tableView:cellForRowAtIndexPath:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC05tableF0_12cellForRowAtSo07UITableF4CellCSo0mF0C_10Foundation9IndexPathVtF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "tableView:cellForRowAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tableView",
- "printedName": "tableView(_:willDisplay:forRowAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "UITableViewCell",
- "printedName": "UIKit.UITableViewCell",
- "usr": "c:objc(cs)UITableViewCell"
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
{
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)tableView:willDisplayCell:forRowAtIndexPath:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC05tableF0_11willDisplay8forRowAtySo07UITableF0C_So0nF4CellC10Foundation9IndexPathVtF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "tableView:willDisplayCell:forRowAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "metadataJSON",
+ "printedName": "metadataJSON",
"children": [
{
"kind": "TypeNominal",
- "name": "SearchAndSelectViewModel",
- "printedName": "Workflow.SearchAndSelectViewModel",
- "usr": "s:8Workflow24SearchAndSelectViewModelC"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit29SearchAndSelectViewControllerC9viewModel33_66F8CC49042D8C198FF1EBA3FDD66154LL8Workflow0cdefI0Cvp",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC9viewModel33_66F8CC49042D8C198FF1EBA3FDD66154LL8Workflow0cdefI0Cvp",
+ "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
+ "HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
},
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(style:)",
+ "printedName": "init(status:institution:linkSessionID:requestID:metadataJSON:)",
"children": [
{
"kind": "TypeNominal",
- "name": "SearchAndSelectViewController",
- "printedName": "LinkKit.SearchAndSelectViewController",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController"
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
},
{
"kind": "TypeNominal",
- "name": "Style",
- "printedName": "UIKit.UITableView.Style",
- "usr": "c:@E@UITableViewStyle"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)initWithStyle:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC5styleACSo07UITableF5StyleV_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithStyle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.Institution?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
- "name": "SearchAndSelectViewController",
- "printedName": "LinkKit.SearchAndSelectViewController",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
@@ -786,112 +804,203 @@
"usr": "s:SS"
}
],
+ "hasDefaultArg": true,
"usr": "s:Sq"
},
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
+ "hasDefaultArg": true,
"usr": "s:Sq"
}
],
"declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "usr": "s:7LinkKit12ExitMetadataV6status11institution13linkSessionID07requestI012metadataJSONAcA0C6StatusOSg_AA11InstitutionVSgSSSgA2Otcfc",
+ "mangledName": "$s7LinkKit12ExitMetadataV6status11institution13linkSessionID07requestI012metadataJSONAcA0C6StatusOSg_AA11InstitutionVSgSSSgA2Otcfc",
"moduleName": "LinkKit",
- "overriding": true,
"implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
"init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UITableViewController",
- "superclassNames": [
- "UIKit.UITableViewController",
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
},
{
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit12ExitMetadataVACycfc",
+ "mangledName": "$s7LinkKit12ExitMetadataVACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
},
{
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit12ExitMetadataV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit12ExitMetadataV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit12ExitMetadataV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit12ExitMetadataV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit12ExitMetadataV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit12ExitMetadataV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKExitMetadata",
+ "printedName": "LinkKit.PLKExitMetadata",
+ "usr": "c:objc(cs)PLKExitMetadata"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKExitMetadata",
+ "printedName": "LinkKit.PLKExitMetadata",
+ "usr": "c:objc(cs)PLKExitMetadata"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit12ExitMetadataV",
+ "mangledName": "$s7LinkKit12ExitMetadataV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
@@ -902,128 +1011,50 @@
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "ComponentPaneViewModel",
- "printedName": "ComponentPaneViewModel",
+ "name": "ExitErrorCode",
+ "printedName": "ExitErrorCode",
"children": [
{
"kind": "Var",
- "name": "content",
- "printedName": "content",
+ "name": "apiError",
+ "printedName": "apiError",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ComponentPaneViewModel.Type) -> (Threads.NavigationProperties?, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.ApiErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Threads.NavigationProperties?, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "printedName": "(LinkKit.ApiErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(navigation: Threads.NavigationProperties?, content: LinkKit.Component)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Threads.NavigationProperties?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NavigationProperties",
- "printedName": "Threads.NavigationProperties",
- "usr": "s:7Threads20NavigationPropertiesV"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- }
- ]
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ComponentPaneViewModel.Type",
+ "printedName": "LinkKit.ExitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
]
}
@@ -1031,77 +1062,52 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit22ComponentPaneViewModelO7contentyAC7Threads20NavigationPropertiesVSg_AA0C0VtcACmF",
- "mangledName": "$s7LinkKit22ComponentPaneViewModelO7contentyAC7Threads20NavigationPropertiesVSg_AA0C0VtcACmF",
+ "usr": "s:7LinkKit13ExitErrorCodeO03apiD0yAcA03ApidE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD0yAcA03ApidE0OcACmF",
"moduleName": "LinkKit",
- "fixedbinaryorder": 0
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "fixedFooter",
- "printedName": "fixedFooter",
+ "name": "authError",
+ "printedName": "authError",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ComponentPaneViewModel.Type) -> (Threads.NavigationProperties?, LinkKit.Component, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.AuthErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Threads.NavigationProperties?, LinkKit.Component, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "printedName": "(LinkKit.AuthErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(navigation: Threads.NavigationProperties?, content: LinkKit.Component, footer: LinkKit.Component)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Threads.NavigationProperties?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NavigationProperties",
- "printedName": "Threads.NavigationProperties",
- "usr": "s:7Threads20NavigationPropertiesV"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- }
- ]
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ComponentPaneViewModel.Type",
+ "printedName": "LinkKit.ExitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
]
}
@@ -1109,497 +1115,502 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit22ComponentPaneViewModelO11fixedFooteryAC7Threads20NavigationPropertiesVSg_AA0C0VAJtcACmF",
- "mangledName": "$s7LinkKit22ComponentPaneViewModelO11fixedFooteryAC7Threads20NavigationPropertiesVSg_AA0C0VAJtcACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit22ComponentPaneViewModelO",
- "mangledName": "$s7LinkKit22ComponentPaneViewModelO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ComponentPaneViewController",
- "printedName": "ComponentPaneViewController",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ComponentPaneViewController",
- "printedName": "LinkKit.ComponentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC4withAcA0cdE5ModelO_tcfc",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC4withAcA0cdE5ModelO_tcfc",
+ "usr": "s:7LinkKit13ExitErrorCodeO04authD0yAcA04AuthdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04authD0yAcA04AuthdE0OcACmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Var",
+ "name": "assetReportError",
+ "printedName": "assetReportError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ComponentPaneViewController?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.AssetReportErrorCode) -> LinkKit.ExitErrorCode",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewController",
- "printedName": "LinkKit.ComponentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD0yAcA05AssetgdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD0yAcA05AssetgdE0OcACmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
- "kind": "TypeDecl",
- "name": "TransitionAnimation",
- "printedName": "TransitionAnimation",
+ "kind": "Var",
+ "name": "internal",
+ "printedName": "internal",
"children": [
{
- "kind": "Var",
- "name": "push",
- "printedName": "push",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (Swift.String) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ComponentPaneViewController.TransitionAnimation.Type) -> LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "printedName": "(Swift.String) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4pushyA2EmF",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4pushyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO8internalyACSScACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO8internalyACSScACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "institutionError",
+ "printedName": "institutionError",
+ "children": [
{
- "kind": "Var",
- "name": "pop",
- "printedName": "pop",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InstitutionErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ComponentPaneViewController.TransitionAnimation.Type) -> LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "printedName": "(LinkKit.InstitutionErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
- }
- ]
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO3popyA2EmF",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO3popyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
},
{
"kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO2eeoiySbAE_AEtFZ",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO2eeoiySbAE_AEtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivp",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivg",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ ]
}
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO011institutionD0yAcA011InstitutiondE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD0yAcA011InstitutiondE0OcACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "itemError",
+ "printedName": "itemError",
+ "children": [
{
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.ItemErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
},
{
"kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4hash4intoys6HasherVz_tF",
- "moduleName": "LinkKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
+ ]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO04itemD0yAcA04ItemdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD0yAcA04ItemdE0OcACmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
]
},
{
- "kind": "Function",
- "name": "transition",
- "printedName": "transition(to:animation:)",
+ "kind": "Var",
+ "name": "invalidInput",
+ "printedName": "invalidInput",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InvalidInputErrorCode) -> LinkKit.ExitErrorCode",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
}
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC10transition2to9animationyAA0cdE5ModelO_AC19TransitionAnimationOSgtF",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC10transition2to9animationyAA0cdE5ModelO_AC19TransitionAnimationOSgtF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO12invalidInputyAcA07InvalidgdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO12invalidInputyAcA07InvalidgdE0OcACmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "kind": "Var",
+ "name": "invalidRequest",
+ "printedName": "invalidRequest",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InvalidRequestErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC11viewDidLoadyyF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO14invalidRequestyAcA07InvalidgdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO14invalidRequestyAcA07InvalidgdE0OcACmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
"RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "rateLimitExceeded",
+ "printedName": "rateLimitExceeded",
"children": [
{
- "kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.RateLimitErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.RateLimitErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC9viewModel33_AAA813881AE0A64F5A37E01EE9BE9C36LLAA0cdeH0Ovp",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC9viewModel33_AAA813881AE0A64F5A37E01EE9BE9C36LLAA0cdeH0Ovp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO17rateLimitExceededyAcA04RategdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO17rateLimitExceededyAcA04RategdE0OcACmF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "layoutView",
- "printedName": "layoutView",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIView?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (Swift.String, Swift.String) -> LinkKit.ExitErrorCode",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String, Swift.String) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(type: Swift.String, code: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC06layoutE033_AAA813881AE0A64F5A37E01EE9BE9C36LLSo6UIViewCSgvp",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC06layoutE033_AAA813881AE0A64F5A37E01EE9BE9C36LLSo6UIViewCSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO7unknownyACSS_SStcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO7unknownyACSS_SStcACmF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "hasStorage": true
+ "RawDocComment"
+ ]
},
{
- "kind": "Var",
- "name": "layoutConstraints",
- "printedName": "layoutConstraints",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[UIKit.NSLayoutConstraint]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSLayoutConstraint",
- "printedName": "UIKit.NSLayoutConstraint",
- "usr": "c:objc(cs)NSLayoutConstraint"
- }
- ],
- "usr": "s:Sa"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC17layoutConstraints33_AAA813881AE0A64F5A37E01EE9BE9C36LLSaySo18NSLayoutConstraintCGvp",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC17layoutConstraints33_AAA813881AE0A64F5A37E01EE9BE9C36LLSaySo18NSLayoutConstraintCGvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13ExitErrorCodeO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
- "hasStorage": true
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewController",
- "printedName": "LinkKit.ComponentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO11descriptionSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -1608,233 +1619,114 @@
"usr": "s:SS"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit13ExitErrorCodeO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
+ "AccessControl"
],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "SDKReleaseLoader",
- "printedName": "SDKReleaseLoader",
- "children": [
{
"kind": "Function",
- "name": "loadAvailableSDKVersions",
- "printedName": "loadAvailableSDKVersions(completionHandler:)",
+ "name": "from",
+ "printedName": "from(errorType:errorCode:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<[LinkKit.GithubRelease], Swift.Error>) -> ()",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<[LinkKit.GithubRelease], Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.GithubRelease]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GithubRelease",
- "printedName": "LinkKit.GithubRelease",
- "usr": "s:7LinkKit13GithubReleaseV"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit16SDKReleaseLoaderP24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA13GithubReleaseVGs5Error_pGc_tF",
- "mangledName": "$s7LinkKit16SDKReleaseLoaderP24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA13GithubReleaseVGs5Error_pGc_tF",
+ "usr": "s:7LinkKit13ExitErrorCodeO4from9errorType0gE0ACSgSS_SStFZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO4from9errorType0gE0ACSgSS_SStFZ",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.SDKReleaseLoader>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
+ "static": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
"funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit16SDKReleaseLoaderP",
- "mangledName": "$s7LinkKit16SDKReleaseLoaderP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "GithubSDKReleaseLoader",
- "printedName": "GithubSDKReleaseLoader",
- "children": [
+ },
{
"kind": "TypeDecl",
- "name": "ReleaseLoaderError",
- "printedName": "ReleaseLoaderError",
+ "name": "CodingKeys",
+ "printedName": "CodingKeys",
"children": [
{
"kind": "Var",
- "name": "invalidURL",
- "printedName": "invalidURL",
+ "name": "errorType",
+ "printedName": "errorType",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "printedName": "(LinkKit.ExitErrorCode.CodingKeys.Type) -> LinkKit.ExitErrorCode.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
}
]
}
@@ -1842,37 +1734,37 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO10invalidURLyA2EmF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO10invalidURLyA2EmF",
- "moduleName": "LinkKit",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO9errorTypeyA2EmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO9errorTypeyA2EmF",
+ "moduleName": "LinkKit",
"fixedbinaryorder": 0
},
{
"kind": "Var",
- "name": "missingData",
- "printedName": "missingData",
+ "name": "errorCode",
+ "printedName": "errorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "printedName": "(LinkKit.ExitErrorCode.CodingKeys.Type) -> LinkKit.ExitErrorCode.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
}
]
}
@@ -1880,137 +1772,180 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO11missingDatayA2EmF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO11missingDatayA2EmF",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO05errorE0yA2EmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO05errorE0yA2EmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 1
},
{
- "kind": "Var",
- "name": "api",
- "printedName": "api",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> (Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
- }
- ]
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO3apiyAEs0G0_pcAEmF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO3apiyAEs0G0_pcAEmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueAESgSS_tcfc",
"moduleName": "LinkKit",
- "fixedbinaryorder": 2
+ "implicit": true,
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "decoding",
- "printedName": "decoding",
+ "name": "rawValue",
+ "printedName": "rawValue",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> (Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvp",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvg",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "stringValue",
+ "printedName": "stringValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvp",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvg",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(stringValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO8decodingyAEs0G0_pcAEmF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO8decodingyAEs0G0_pcAEmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueAESgSS_tcfc",
"moduleName": "LinkKit",
- "fixedbinaryorder": 3
+ "implicit": true,
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "errorDescription",
- "printedName": "errorDescription",
+ "name": "intValue",
+ "printedName": "intValue",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Swift.Int?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvp",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvp",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvp",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -2020,46 +1955,127 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Swift.Int?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvg",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvg",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvg",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(intValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueAESgSi_tcfc",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueAESgSi_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "enumRawTypeName": "String",
"isEnumExhaustive": true,
"conformances": [
{
"kind": "Conformance",
- "name": "LocalizedError",
- "printedName": "LocalizedError",
- "usr": "s:10Foundation14LocalizedErrorP",
- "mangledName": "$s10Foundation14LocalizedErrorP"
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
"kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CodingKey",
+ "printedName": "CodingKey",
+ "usr": "s:s9CodingKeyP",
+ "mangledName": "$ss9CodingKeyP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
{
"kind": "Conformance",
@@ -2071,238 +2087,159 @@
]
},
{
- "kind": "Function",
- "name": "loadAvailableSDKVersions",
- "printedName": "loadAvailableSDKVersions(completionHandler:)",
+ "kind": "Var",
+ "name": "invalidRequestString",
+ "printedName": "invalidRequestString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO20invalidRequestStringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO20invalidRequestStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<[LinkKit.GithubRelease], Swift.Error>) -> ()",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<[LinkKit.GithubRelease], Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.GithubRelease]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GithubRelease",
- "printedName": "LinkKit.GithubRelease",
- "usr": "s:7LinkKit13GithubReleaseV"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO20invalidRequestStringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO20invalidRequestStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA0C7ReleaseVGs5Error_pGc_tF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA0C7ReleaseVGs5Error_pGc_tF",
- "moduleName": "LinkKit",
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
+ "kind": "Var",
+ "name": "invalidInputString",
+ "printedName": "invalidInputString",
"children": [
{
"kind": "TypeNominal",
- "name": "GithubSDKReleaseLoader",
- "printedName": "LinkKit.GithubSDKReleaseLoader",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderVACycfc",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderVACycfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO18invalidInputStringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO18invalidInputStringSSvpZ",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV",
- "moduleName": "LinkKit",
- "conformances": [
- {
- "kind": "Conformance",
- "name": "SDKReleaseLoader",
- "printedName": "SDKReleaseLoader",
- "usr": "s:7LinkKit16SDKReleaseLoaderP",
- "mangledName": "$s7LinkKit16SDKReleaseLoaderP"
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO18invalidInputStringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO18invalidInputStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "LinkHandlerAction",
- "printedName": "LinkHandlerAction",
- "children": [
- {
- "kind": "Function",
- "name": "composeMail",
- "printedName": "composeMail(to:using:)",
+ "kind": "Var",
+ "name": "institutionErrorString",
+ "printedName": "institutionErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A13HandlerActionV11composeMail2to5usingy10Foundation3URLV_So16UIViewControllerCtFZ",
- "mangledName": "$s7LinkKit0A13HandlerActionV11composeMail2to5usingy10Foundation3URLV_So16UIViewControllerCtFZ",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO011institutionD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD6StringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkHandlerAction",
- "printedName": "LinkKit.LinkHandlerAction",
- "usr": "s:7LinkKit0A13HandlerActionV"
- }
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A13HandlerActionVACycfc",
- "mangledName": "$s7LinkKit0A13HandlerActionVACycfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit0A13HandlerActionV",
- "mangledName": "$s7LinkKit0A13HandlerActionV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "SemanticVersion",
- "printedName": "SemanticVersion",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(versionString:)",
- "children": [
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.SemanticVersion?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO011institutionD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD6StringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit15SemanticVersionV13versionStringACSgSS_tcfc",
- "mangledName": "$s7LinkKit15SemanticVersionV13versionStringACSgSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
"kind": "Var",
- "name": "versionString",
- "printedName": "versionString",
+ "name": "rateLimitExceededString",
+ "printedName": "rateLimitExceededString",
"children": [
{
"kind": "TypeNominal",
@@ -2312,15 +2249,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV13versionStringSSvp",
- "mangledName": "$s7LinkKit15SemanticVersionV13versionStringSSvp",
+ "usr": "s:7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 0,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -2337,9 +2274,10 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV13versionStringSSvg",
- "mangledName": "$s7LinkKit15SemanticVersionV13versionStringSSvg",
+ "usr": "s:7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
"declAttributes": [
"Transparent"
@@ -2350,8 +2288,8 @@
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "apiErrorString",
+ "printedName": "apiErrorString",
"children": [
{
"kind": "TypeNominal",
@@ -2361,12 +2299,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV11descriptionSSvp",
- "mangledName": "$s7LinkKit15SemanticVersionV11descriptionSSvp",
+ "usr": "s:7LinkKit13ExitErrorCodeO03apiD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -2381,33 +2324,42 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV11descriptionSSvg",
- "mangledName": "$s7LinkKit15SemanticVersionV11descriptionSSvg",
+ "usr": "s:7LinkKit13ExitErrorCodeO03apiD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "major",
- "printedName": "major",
+ "name": "itemErrorString",
+ "printedName": "itemErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV5majorSivp",
- "mangledName": "$s7LinkKit15SemanticVersionV5majorSivp",
+ "usr": "s:7LinkKit13ExitErrorCodeO04itemD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -2416,39 +2368,48 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV5majorSivg",
- "mangledName": "$s7LinkKit15SemanticVersionV5majorSivg",
+ "usr": "s:7LinkKit13ExitErrorCodeO04itemD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "minor",
- "printedName": "minor",
+ "name": "authErrorString",
+ "printedName": "authErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV5minorSivp",
- "mangledName": "$s7LinkKit15SemanticVersionV5minorSivp",
+ "usr": "s:7LinkKit13ExitErrorCodeO04authD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04authD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -2457,39 +2418,48 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV5minorSivg",
- "mangledName": "$s7LinkKit15SemanticVersionV5minorSivg",
+ "usr": "s:7LinkKit13ExitErrorCodeO04authD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04authD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "patch",
- "printedName": "patch",
+ "name": "assetReportErrorString",
+ "printedName": "assetReportErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV5patchSivp",
- "mangledName": "$s7LinkKit15SemanticVersionV5patchSivp",
+ "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -2498,125 +2468,78 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV5patchSivg",
- "mangledName": "$s7LinkKit15SemanticVersionV5patchSivg",
+ "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "components",
- "printedName": "components",
+ "name": "internalString",
+ "printedName": "internalString",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sa"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV10components33_5723E2495FAE01EBDD8BE3861CED1ED5LLSaySiGvp",
- "mangledName": "$s7LinkKit15SemanticVersionV10components33_5723E2495FAE01EBDD8BE3861CED1ED5LLSaySiGvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
- },
- {
- "kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SemanticVersionV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit15SemanticVersionV2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit13ExitErrorCodeO14internalStringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO14internalStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "<",
- "printedName": "<(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
- },
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO14internalStringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO14internalStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SemanticVersionV1loiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit15SemanticVersionV1loiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Function",
- "name": ">",
- "printedName": ">(_:_:)",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
@@ -2626,63 +2549,55 @@
},
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit15SemanticVersionV1goiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit15SemanticVersionV1goiySbAC_ACtFZ",
+ "usr": "s:7LinkKit13ExitErrorCodeO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
- "declAttributes": [
- "AccessControl"
- ],
+ "isFromExtension": true,
"funcSelfKind": "NonMutating"
}
],
- "declKind": "Struct",
- "usr": "s:7LinkKit15SemanticVersionV",
- "mangledName": "$s7LinkKit15SemanticVersionV",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit13ExitErrorCodeO",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
@@ -2695,1382 +2610,695 @@
},
{
"kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
+ "name": "Foundation",
+ "printedName": "Foundation",
"declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
+ "moduleName": "LinkKit"
},
{
"kind": "TypeDecl",
- "name": "EmbeddedSearchModuleView",
- "printedName": "EmbeddedSearchModuleView",
+ "name": "LinkSuccess",
+ "printedName": "LinkSuccess",
"children": [
{
- "kind": "TypeDecl",
- "name": "Style",
- "printedName": "Style",
+ "kind": "Var",
+ "name": "publicToken",
+ "printedName": "publicToken",
"children": [
{
- "kind": "Var",
- "name": "primary",
- "printedName": "primary",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO7primaryyA2EmF",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO7primaryyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvp",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "Var",
- "name": "secondary",
- "printedName": "secondary",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9secondaryyA2EmF",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9secondaryyA2EmF",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvg",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvg",
"moduleName": "LinkKit",
- "fixedbinaryorder": 1
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "Var",
- "name": "tertiary",
- "printedName": "tertiary",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8tertiaryyA2EmF",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8tertiaryyA2EmF",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvs",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvs",
"moduleName": "LinkKit",
- "fixedbinaryorder": 2
+ "implicit": true,
+ "accessorKind": "set"
},
{
- "kind": "Var",
- "name": "textKind",
- "printedName": "textKind",
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "TextKind",
- "printedName": "Threads.TextKind",
- "usr": "s:7Threads8TextKindO"
+ "name": "Void",
+ "printedName": "()"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovp",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvM",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvM",
"moduleName": "LinkKit",
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TextKind",
- "printedName": "Threads.TextKind",
- "usr": "s:7Threads8TextKindO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovg",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "metadata",
+ "printedName": "metadata",
+ "children": [
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "kind": "TypeNominal",
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvp",
+ "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO2eeoiySbAE_AEtFZ",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO2eeoiySbAE_AEtFZ",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvg",
+ "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "funcSelfKind": "NonMutating"
+ "accessorKind": "get"
},
{
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivp",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvs",
+ "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvs",
"moduleName": "LinkKit",
"implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivg",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
+ "accessorKind": "set"
},
{
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
"name": "Void",
"printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO4hash4intoys6HasherVz_tF",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvM",
+ "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvM",
"moduleName": "LinkKit",
"implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "accessorKind": "_modify"
}
]
},
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(viewModel:style:)",
+ "printedName": "init(publicToken:metadata:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchModuleView",
- "printedName": "LinkKit.EmbeddedSearchModuleView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView"
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
},
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchModuleViewModel",
- "printedName": "Workflow.EmbeddedSearchModuleViewModel",
- "usr": "s:8Workflow29EmbeddedSearchModuleViewModelC"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
},
{
"kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC9viewModel5styleAC8Workflow0cdefH0C_AC5StyleOtcfc",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC9viewModel5styleAC8Workflow0cdefH0C_AC5StyleOtcfc",
+ "usr": "s:7LinkKit0A7SuccessV11publicToken8metadataACSS_AA0C8MetadataVtcfc",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicToken8metadataACSS_AA0C8MetadataVtcfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "AccessControl"
- ],
+ "implicit": true,
"init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchModuleViewModel",
- "printedName": "Workflow.EmbeddedSearchModuleViewModel",
- "usr": "s:8Workflow29EmbeddedSearchModuleViewModelC"
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC9viewModel33_8B1E8952538FE6432CBE3AC02A54F6CBLL8Workflow0cdefH0Cvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC9viewModel33_8B1E8952538FE6432CBE3AC02A54F6CBLL8Workflow0cdefH0Cvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A7SuccessV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit0A7SuccessV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "style",
- "printedName": "style",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5style33_8B1E8952538FE6432CBE3AC02A54F6CBLLAC5StyleOvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5style33_8B1E8952538FE6432CBE3AC02A54F6CBLLAC5StyleOvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7SuccessV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit0A7SuccessV6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "hStack",
- "printedName": "hStack",
+ "kind": "Function",
+ "name": "from",
+ "printedName": "from(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "UIStackView",
- "printedName": "UIKit.UIStackView",
- "usr": "c:objc(cs)UIStackView"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC6hStack33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo07UIStackF0Cvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC6hStack33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo07UIStackF0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "tapGesture",
- "printedName": "tapGesture",
- "children": [
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
+ },
{
"kind": "TypeNominal",
- "name": "UITapGestureRecognizer",
- "printedName": "UIKit.UITapGestureRecognizer",
- "usr": "c:objc(cs)UITapGestureRecognizer"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC10tapGesture33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo05UITapH10RecognizerCvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC10tapGesture33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo05UITapH10RecognizerCvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 3,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "$__lazy_storage_$_leadingAsset",
- "printedName": "$__lazy_storage_$_leadingAsset",
- "children": [
+ "name": "Link_Workflow_Primitives_SDKResult",
+ "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult",
+ "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV"
+ },
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Threads.RenderedAsset?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "RenderedAsset",
- "printedName": "Threads.RenderedAsset",
- "usr": "c:@M@Threads@objc(cs)RenderedAsset"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC30$__lazy_storage_$_leadingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC30$__lazy_storage_$_leadingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7SuccessV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgtFZ",
+ "mangledName": "$s7LinkKit0A7SuccessV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgtFZ",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
- ],
- "fixedbinaryorder": 4,
- "hasStorage": true
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "$__lazy_storage_$_text",
- "printedName": "$__lazy_storage_$_text",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UILabel?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UILabel",
- "printedName": "UIKit.UILabel",
- "usr": "c:objc(cs)UILabel"
- }
- ],
- "usr": "s:Sq"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC22$__lazy_storage_$_text33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC22$__lazy_storage_$_text33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7SuccessV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit0A7SuccessV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
- ],
- "fixedbinaryorder": 5,
- "hasStorage": true
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "$__lazy_storage_$_secondaryText",
- "printedName": "$__lazy_storage_$_secondaryText",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UILabel?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UILabel",
- "printedName": "UIKit.UILabel",
- "usr": "c:objc(cs)UILabel"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKLinkSuccess",
+ "printedName": "LinkKit.PLKLinkSuccess",
+ "usr": "c:objc(cs)PLKLinkSuccess"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_secondaryText33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_secondaryText33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "usr": "s:7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvp",
+ "mangledName": "$s7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvp",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
+ "AccessControl"
],
- "fixedbinaryorder": 6,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "$__lazy_storage_$_trailingAsset",
- "printedName": "$__lazy_storage_$_trailingAsset",
- "children": [
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Threads.RenderedAsset?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "RenderedAsset",
- "printedName": "Threads.RenderedAsset",
- "usr": "c:@M@Threads@objc(cs)RenderedAsset"
+ "name": "PLKLinkSuccess",
+ "printedName": "LinkKit.PLKLinkSuccess",
+ "usr": "c:objc(cs)PLKLinkSuccess"
}
],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_trailingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_trailingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
- ],
- "fixedbinaryorder": 7,
- "hasStorage": true
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(frame:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchModuleView",
- "printedName": "LinkKit.EmbeddedSearchModuleView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView"
- },
- {
- "kind": "TypeNominal",
- "name": "CGRect",
- "printedName": "CoreFoundation.CGRect",
- "usr": "c:@S@CGRect"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvg",
+ "mangledName": "$s7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView(im)initWithFrame:",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5frameACSo6CGRectV_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithFrame:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
+ ]
}
],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit0A7SuccessV",
+ "mangledName": "$s7LinkKit0A7SuccessV",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
"AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "LayoutArea",
- "printedName": "LayoutArea",
- "usr": "s:9AppCoreUI10LayoutAreaP",
- "mangledName": "$s9AppCoreUI10LayoutAreaP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
{
"kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "SafariServices",
- "printedName": "SafariServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
+ "name": "Foundation",
+ "printedName": "Foundation",
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "ComponentPaneRenderable",
- "printedName": "ComponentPaneRenderable",
+ "name": "EventName",
+ "printedName": "EventName",
"children": [
{
- "kind": "Function",
- "name": "renderComponentPane",
- "printedName": "renderComponentPane()",
+ "kind": "Var",
+ "name": "bankIncomeInsightsCompleted",
+ "printedName": "bankIncomeInsightsCompleted",
"children": [
{
- "kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit23ComponentPaneRenderableP06rendercD0AA0cD9ViewModelOyF",
- "mangledName": "$s7LinkKit23ComponentPaneRenderableP06rendercD0AA0cD9ViewModelOyF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO27bankIncomeInsightsCompletedyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO27bankIncomeInsightsCompletedyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.ComponentPaneRenderable>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit23ComponentPaneRenderableP",
- "mangledName": "$s7LinkKit23ComponentPaneRenderableP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PaneFactory",
- "printedName": "PaneFactory",
- "children": [
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
{
"kind": "Var",
- "name": "log",
- "printedName": "log",
+ "name": "closeOAuth",
+ "printedName": "closeOAuth",
"children": [
{
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit11PaneFactoryV3log3LogAEVvp",
- "mangledName": "$s7LinkKit11PaneFactoryV3log3LogAEVvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO10closeOAuthyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO10closeOAuthyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "error",
+ "printedName": "error",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit11PaneFactoryV3log3LogAEVvg",
- "mangledName": "$s7LinkKit11PaneFactoryV3log3LogAEVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "paneViewController",
- "printedName": "paneViewController(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "PaneViewModel",
- "printedName": "Workflow.PaneViewModel",
- "usr": "s:8Workflow13PaneViewModelO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11PaneFactoryV18paneViewController4withSo06UIViewG0C8Workflow0cF5ModelO_tF",
- "mangledName": "$s7LinkKit11PaneFactoryV18paneViewController4withSo06UIViewG0C8Workflow0cF5ModelO_tF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(log:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PaneFactory",
- "printedName": "LinkKit.PaneFactory",
- "usr": "s:7LinkKit11PaneFactoryV"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit11PaneFactoryV3logAC3LogAEV_tcfc",
- "mangledName": "$s7LinkKit11PaneFactoryV3logAC3LogAEV_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit11PaneFactoryV",
- "mangledName": "$s7LinkKit11PaneFactoryV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Anomalies",
- "printedName": "Anomalies",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "Plaid",
- "printedName": "Plaid",
- "children": [
- {
- "kind": "TypeDecl",
- "name": "CreateError",
- "printedName": "CreateError",
- "children": [
- {
- "kind": "Var",
- "name": "configurationError",
- "printedName": "configurationError",
- "children": [
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Plaid.CreateError.Type) -> (LinkKit.ConfigurationError) -> LinkKit.Plaid.CreateError",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ConfigurationError) -> LinkKit.Plaid.CreateError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CreateError",
- "printedName": "LinkKit.Plaid.CreateError",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Plaid.CreateError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CreateError",
- "printedName": "LinkKit.Plaid.CreateError",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO013configurationE0yAeA013ConfigurationE0OcAEmF",
- "mangledName": "$s7LinkKit5PlaidV11CreateErrorO013configurationE0yAeA013ConfigurationE0OcAEmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO5erroryA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO5erroryA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "exit",
+ "printedName": "exit",
+ "children": [
{
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvp",
- "mangledName": "$s7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvg",
- "mangledName": "$s7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO",
- "mangledName": "$s7LinkKit5PlaidV11CreateErrorO",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO4exityA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO4exityA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
+ "RawDocComment"
]
},
{
- "kind": "Function",
- "name": "create",
- "printedName": "create(_:)",
+ "kind": "Var",
+ "name": "failOAuth",
+ "printedName": "failOAuth",
"children": [
{
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "CreateError",
- "printedName": "LinkKit.Plaid.CreateError",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:s6ResultO"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A22PublicKeyConfigurationVFZ",
- "mangledName": "$s7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A22PublicKeyConfigurationVFZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO9failOAuthyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO9failOAuthyA2CmF",
"moduleName": "LinkKit",
- "static": true,
- "deprecated": true,
"declAttributes": [
- "AccessControl",
- "Available",
"RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "create",
- "printedName": "create(_:)",
+ "kind": "Var",
+ "name": "handoff",
+ "printedName": "handoff",
"children": [
{
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "CreateError",
- "printedName": "LinkKit.Plaid.CreateError",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:s6ResultO"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A18TokenConfigurationVFZ",
- "mangledName": "$s7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A18TokenConfigurationVFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "version",
- "printedName": "version",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit5PlaidV7versionSSvpZ",
- "mangledName": "$s7LinkKit5PlaidV7versionSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO7handoffyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO7handoffyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit5PlaidV7versionSSvgZ",
- "mangledName": "$s7LinkKit5PlaidV7versionSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "accessorKind": "get"
- }
]
},
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Plaid",
- "printedName": "LinkKit.Plaid",
- "usr": "s:7LinkKit5PlaidV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit5PlaidVACycfc",
- "mangledName": "$s7LinkKit5PlaidVACycfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit5PlaidV",
- "mangledName": "$s7LinkKit5PlaidV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "HandlerContinueError",
- "printedName": "HandlerContinueError",
- "children": [
{
"kind": "Var",
- "name": "invalidRedirect",
- "printedName": "invalidRedirect",
+ "name": "identityVerificationStartStep",
+ "printedName": "identityVerificationStartStep",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.HandlerContinueError.Type) -> (Swift.String) -> LinkKit.HandlerContinueError",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.HandlerContinueError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.HandlerContinueError.Type",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
@@ -4078,36 +3306,39 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20HandlerContinueErrorO15invalidRedirectyACSScACmF",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO15invalidRedirectyACSScACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit9EventNameO29identityVerificationStartStepyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO29identityVerificationStartStepyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "internal",
- "printedName": "internal",
+ "name": "identityVerificationPassStep",
+ "printedName": "identityVerificationPassStep",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.HandlerContinueError.Type) -> LinkKit.HandlerContinueError",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.HandlerContinueError.Type",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
@@ -4115,1600 +3346,1540 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20HandlerContinueErrorO8internalyA2CmF",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO8internalyA2CmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit9EventNameO28identityVerificationPassStepyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO28identityVerificationPassStepyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "identityVerificationFailStep",
+ "printedName": "identityVerificationFailStep",
"children": [
{
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20HandlerContinueErrorO6toObjCSo7NSErrorCvp",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO6toObjCSo7NSErrorCvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20HandlerContinueErrorO6toObjCSo7NSErrorCvg",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO6toObjCSo7NSErrorCvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit20HandlerContinueErrorO",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Handler",
- "printedName": "Handler",
- "children": [
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentUsing:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP4open12presentUsingyAA18PresentationMethodO_tF",
- "mangledName": "$s7LinkKit7HandlerP4open12presentUsingyAA18PresentationMethodO_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO28identityVerificationFailStepyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO28identityVerificationFailStepyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "protocolReq": true,
"declAttributes": [
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentUsing:_:)",
+ "kind": "Var",
+ "name": "identityVerificationPendingReviewStep",
+ "printedName": "identityVerificationPendingReviewStep",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:SD"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP4open12presentUsing_yAA18PresentationMethodO_SDyS2SGtF",
- "mangledName": "$s7LinkKit7HandlerP4open12presentUsing_yAA18PresentationMethodO_SDyS2SGtF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO37identityVerificationPendingReviewStepyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO37identityVerificationPendingReviewStepyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
"declAttributes": [
- "Available",
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "createEmbeddedView",
- "printedName": "createEmbeddedView(presentUsing:)",
+ "kind": "Var",
+ "name": "identityVerificationCreateSession",
+ "printedName": "identityVerificationCreateSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:s6ResultO"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP18createEmbeddedView12presentUsings6ResultOySo6UIViewCAA18ConfigurationErrorOGAA18PresentationMethodO_tF",
- "mangledName": "$s7LinkKit7HandlerP18createEmbeddedView12presentUsings6ResultOySo6UIViewCAA18ConfigurationErrorOGAA18PresentationMethodO_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO33identityVerificationCreateSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO33identityVerificationCreateSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "protocolReq": true,
"declAttributes": [
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "continueFrom",
- "printedName": "continueFrom(redirectUri:)",
+ "kind": "Var",
+ "name": "identityVerificationResumeSession",
+ "printedName": "identityVerificationResumeSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.HandlerContinueError?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP12continueFrom11redirectUriAA0C13ContinueErrorOSg10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit7HandlerP12continueFrom11redirectUriAA0C13ContinueErrorOSg10Foundation3URLV_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO33identityVerificationResumeSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO33identityVerificationResumeSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
"declAttributes": [
- "Available",
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "continue",
- "printedName": "continue(from:)",
+ "kind": "Var",
+ "name": "identityVerificationPassSession",
+ "printedName": "identityVerificationPassSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP8continue4fromy10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit7HandlerP8continue4fromy10Foundation3URLV_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO31identityVerificationPassSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO31identityVerificationPassSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
"declAttributes": [
- "Available",
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "resumeAfterTermination",
- "printedName": "resumeAfterTermination(from:)",
+ "kind": "Var",
+ "name": "identityVerificationFailSession",
+ "printedName": "identityVerificationFailSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP22resumeAfterTermination4fromy10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit7HandlerP22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO31identityVerificationFailSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO31identityVerificationFailSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "protocolReq": true,
"declAttributes": [
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit7HandlerP",
- "mangledName": "$s7LinkKit7HandlerP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkTokenConfiguration",
- "children": [
+ ]
+ },
{
"kind": "Var",
- "name": "token",
- "printedName": "token",
+ "name": "identityVerificationPendingReviewSession",
+ "printedName": "identityVerificationPendingReviewSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV5tokenSSvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV5tokenSSvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO40identityVerificationPendingReviewSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO40identityVerificationPendingReviewSessionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "identityVerificationOpenUI",
+ "printedName": "identityVerificationOpenUI",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV5tokenSSvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV5tokenSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO26identityVerificationOpenUIyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO26identityVerificationOpenUIyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "onSuccess",
- "printedName": "onSuccess",
+ "name": "identityVerificationResumeUI",
+ "printedName": "identityVerificationResumeUI",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO28identityVerificationResumeUIyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO28identityVerificationResumeUIyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "identityVerificationCloseUI",
+ "printedName": "identityVerificationCloseUI",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO27identityVerificationCloseUIyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO27identityVerificationCloseUIyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "matchedSelectInstitution",
+ "printedName": "matchedSelectInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvs",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0VcvM",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO24matchedSelectInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO24matchedSelectInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "onExit",
- "printedName": "onExit",
+ "name": "matchedSelectVerifyMethod",
+ "printedName": "matchedSelectVerifyMethod",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO25matchedSelectVerifyMethodyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO25matchedSelectVerifyMethodyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "open",
+ "printedName": "open",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO4openyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO4openyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "openMyPlaid",
+ "printedName": "openMyPlaid",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvs",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO11openMyPlaidyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO11openMyPlaidyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "openOAuth",
+ "printedName": "openOAuth",
+ "children": [
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0VcvM",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO9openOAuthyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO9openOAuthyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "onEvent",
- "printedName": "onEvent",
+ "name": "searchInstitution",
+ "printedName": "searchInstitution",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO17searchInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO17searchInstitutionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selectDegradedInstitution",
+ "printedName": "selectDegradedInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO25selectDegradedInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO25selectDegradedInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selectFilteredInstitution",
+ "printedName": "selectFilteredInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvs",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO25selectFilteredInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO25selectFilteredInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selectDownInstitution",
+ "printedName": "selectDownInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0VcvM",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO21selectDownInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO21selectDownInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "noLoadingState",
- "printedName": "noLoadingState",
+ "name": "selectInstitution",
+ "printedName": "selectInstitution",
"children": [
{
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO17selectInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO17selectInstitutionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selectBrand",
+ "printedName": "selectBrand",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvs",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvM",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO11selectBrandyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO11selectBrandyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(token:onSuccess:)",
+ "kind": "Var",
+ "name": "selectAuthType",
+ "printedName": "selectAuthType",
"children": [
- {
- "kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A18TokenConfigurationV5token9onSuccessACSS_yAA0aG0Vctcfc",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV5token9onSuccessACSS_yAA0aG0Vctcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO14selectAuthTypeyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO14selectAuthTypeyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Function",
- "name": "environment",
- "printedName": "environment(_:)",
+ "kind": "Var",
+ "name": "submitAccountNumber",
+ "printedName": "submitAccountNumber",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.Environment?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A18TokenConfigurationV11environmentyAA11EnvironmentOSg3LogAHVF",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV11environmentyAA11EnvironmentOSg3LogAHVF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO19submitAccountNumberyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO19submitAccountNumberyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "loadSessionConfiguration",
- "printedName": "loadSessionConfiguration(_:_:_:_:_:)",
+ "kind": "Var",
+ "name": "submitDocuments",
+ "printedName": "submitDocuments",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "OneOf_Configuration",
- "printedName": "WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration",
- "usr": "s:13WorkflowProto09Link_Api_cA12StartRequestV19OneOf_ConfigurationO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A18TokenConfigurationV011loadSessionD0yySS_S2S3LogAEVy13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_D0OctF",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV011loadSessionD0yySS_S2S3LogAEVy13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_D0OctF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO15submitDocumentsyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO15submitDocumentsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit0A18TokenConfigurationV",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "OAuthNonceConfiguration",
- "printedName": "OAuthNonceConfiguration",
- "children": [
+ ]
+ },
{
"kind": "Var",
- "name": "nonce",
- "printedName": "nonce",
+ "name": "submitDocumentsSuccess",
+ "printedName": "submitDocumentsSuccess",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV5nonceSSvp",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV5nonceSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV5nonceSSvg",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV5nonceSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO22submitDocumentsSuccessyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO22submitDocumentsSuccessyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "redirectUri",
- "printedName": "redirectUri",
+ "name": "submitDocumentsError",
+ "printedName": "submitDocumentsError",
"children": [
{
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV11redirectUri10Foundation3URLVvp",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV11redirectUri10Foundation3URLVvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV11redirectUri10Foundation3URLVvg",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV11redirectUri10Foundation3URLVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nonce:redirectUri:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV5nonce11redirectUriACSS_10Foundation3URLVtcfc",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV5nonce11redirectUriACSS_10Foundation3URLVtcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO20submitDocumentsErroryA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO20submitDocumentsErroryA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
"kind": "Var",
- "name": "oauthStateID",
- "printedName": "oauthStateID",
+ "name": "submitRoutingNumber",
+ "printedName": "submitRoutingNumber",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV12oauthStateIDSSSgvp",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV12oauthStateIDSSSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO19submitRoutingNumberyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO19submitRoutingNumberyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "submitCredentials",
+ "printedName": "submitCredentials",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV12oauthStateIDSSSgvg",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV12oauthStateIDSSSgvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO17submitCredentialsyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO17submitCredentialsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkPublicKeyConfiguration",
- "children": [
+ },
{
- "kind": "TypeDecl",
- "name": "Token",
- "printedName": "Token",
+ "kind": "Var",
+ "name": "submitMFA",
+ "printedName": "submitMFA",
"children": [
{
- "kind": "Var",
- "name": "payment",
- "printedName": "payment",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token.Type) -> (Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO7paymentyAESS_SStcAEmF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO7paymentyAESS_SStcAEmF",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "Available"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO9submitMFAyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO9submitMFAyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "transitionView",
+ "printedName": "transitionView",
+ "children": [
{
- "kind": "Var",
- "name": "depositSwitchToken",
- "printedName": "depositSwitchToken",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token.Type) -> (Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO013depositSwitchF0yAESS_SStcAEmF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO013depositSwitchF0yAESS_SStcAEmF",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "Available"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO14transitionViewyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO14transitionViewyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "viewDataTypes",
+ "printedName": "viewDataTypes",
+ "children": [
{
- "kind": "Var",
- "name": "publicKey",
- "printedName": "publicKey",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token.Type) -> (Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO06publicD0yAESScAEmF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO06publicD0yAESScAEmF",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "Available"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO13viewDataTypesyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO13viewDataTypesyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "submitPhone",
+ "printedName": "submitPhone",
+ "children": [
{
- "kind": "Var",
- "name": "publicToken",
- "printedName": "publicToken",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token.Type) -> (Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO06publicF0yAESS_SStcAEmF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO06publicF0yAESS_SStcAEmF",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "Available"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO11submitPhoneyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO11submitPhoneyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "skipSubmitPhone",
+ "printedName": "skipSubmitPhone",
+ "children": [
{
- "kind": "Var",
- "name": "associatedValue",
- "printedName": "associatedValue",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO15associatedValueSSvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO15associatedValueSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO15associatedValueSSvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO15associatedValueSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO15skipSubmitPhoneyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO15skipSubmitPhoneyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "clientName",
- "printedName": "clientName",
+ "name": "verifyPhone",
+ "printedName": "verifyPhone",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientNameSSvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientNameSSvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO11verifyPhoneyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO11verifyPhoneyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientNameSSvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientNameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "connectNewInstitution",
+ "printedName": "connectNewInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientNameSSvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientNameSSvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO21connectNewInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO21connectNewInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> (Swift.String) -> LinkKit.EventName",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientNameSSvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientNameSSvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit9EventNameO7unknownyACSScACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9EventNameO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit9EventNameO4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9EventNameO8rawValueACSS_tcfc",
+ "mangledName": "$s7LinkKit9EventNameO8rawValueACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
{
"kind": "Var",
- "name": "environment",
- "printedName": "environment",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvp",
+ "usr": "s:7LinkKit9EventNameO11descriptionSSvp",
+ "mangledName": "$s7LinkKit9EventNameO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -5717,194 +4888,95 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvM",
+ "usr": "s:7LinkKit9EventNameO11descriptionSSvg",
+ "mangledName": "$s7LinkKit9EventNameO11descriptionSSvg",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
- "kind": "Var",
- "name": "products",
- "printedName": "products",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Set",
- "printedName": "Swift.Set",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sh"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9EventNameO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit9EventNameO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "hasStorage": true,
- "accessors": [
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Set",
- "printedName": "Swift.Set",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sh"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Set",
- "printedName": "Swift.Set",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sh"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit9EventNameO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit9EventNameO2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "language",
- "printedName": "language",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKEventName",
+ "printedName": "LinkKit.PLKEventName",
+ "usr": "c:objc(cs)PLKEventName"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8languageSSvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8languageSSvp",
+ "usr": "s:7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvp",
+ "mangledName": "$s7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -5913,533 +4985,474 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKEventName",
+ "printedName": "LinkKit.PLKEventName",
+ "usr": "c:objc(cs)PLKEventName"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8languageSSvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8languageSSvg",
+ "usr": "s:7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvg",
+ "mangledName": "$s7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvg",
"moduleName": "LinkKit",
- "implicit": true,
+ "isFromExtension": true,
"accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8languageSSvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8languageSSvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8languageSSvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8languageSSvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit9EventNameO",
+ "mangledName": "$s7LinkKit9EventNameO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
{
- "kind": "Var",
- "name": "countryCodes",
- "printedName": "countryCodes",
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PlaidLinkViewController",
+ "printedName": "PlaidLinkViewController",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(log:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
+ "name": "PlaidLinkViewController",
+ "printedName": "LinkKit.PlaidLinkViewController",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "hasDefaultArg": true,
+ "usr": "s:3LogAAV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit05PlaidA14ViewControllerC3logAC3LogAEV_tcfc",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC3logAC3LogAEV_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
+ "Custom",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PlaidLinkViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
+ "name": "PlaidLinkViewController",
+ "printedName": "LinkKit.PlaidLinkViewController",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "token",
- "printedName": "token",
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
"children": [
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
+ "name": "Void",
+ "printedName": "()"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvp",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC11viewDidLoadyyF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
"declAttributes": [
- "HasStorage",
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "transitionTo",
+ "printedName": "transitionTo(pane:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit05PlaidA14ViewControllerC12transitionTo4paneySo06UIViewE0C_tF",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC12transitionTo4paneySo06UIViewE0C_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "onSuccess",
- "printedName": "onSuccess",
+ "name": "log",
+ "printedName": "log",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvp",
+ "usr": "s:7LinkKit05PlaidA14ViewControllerC3log33_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LL3LogAFVvp",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC3log33_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LL3LogAFVvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "Final",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0VcvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "onExit",
- "printedName": "onExit",
+ "name": "$__lazy_storage_$_presentedPaneViewController",
+ "printedName": "$__lazy_storage_$_presentedPaneViewController",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "UIKit.UIViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvp",
+ "usr": "s:7LinkKit05PlaidA14ViewControllerC031$__lazy_storage_$_presentedPanedE033_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LLSo06UIViewE0CSgvp",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC031$__lazy_storage_$_presentedPanedE033_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LLSo06UIViewE0CSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final"
],
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 1,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "PlaidLinkViewController",
+ "printedName": "LinkKit.PlaidLinkViewController",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0VcvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Institution",
+ "printedName": "Institution",
+ "children": [
{
"kind": "Var",
- "name": "onEvent",
- "printedName": "onEvent",
+ "name": "id",
+ "printedName": "id",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvp",
+ "usr": "s:7LinkKit11InstitutionV2idSSvp",
+ "mangledName": "$s7LinkKit11InstitutionV2idSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -6452,27 +5465,15 @@
"printedName": "Get()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvg",
+ "usr": "s:7LinkKit11InstitutionV2idSSvg",
+ "mangledName": "$s7LinkKit11InstitutionV2idSSvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -6488,27 +5489,15 @@
"printedName": "()"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvs",
+ "usr": "s:7LinkKit11InstitutionV2idSSvs",
+ "mangledName": "$s7LinkKit11InstitutionV2idSSvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -6525,8 +5514,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0VcvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0VcvM",
+ "usr": "s:7LinkKit11InstitutionV2idSSvM",
+ "mangledName": "$s7LinkKit11InstitutionV2idSSvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -6535,30 +5524,21 @@
},
{
"kind": "Var",
- "name": "webhook",
- "printedName": "webhook",
+ "name": "name",
+ "printedName": "name",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvp",
+ "usr": "s:7LinkKit11InstitutionV4nameSSvp",
+ "mangledName": "$s7LinkKit11InstitutionV4nameSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -6572,22 +5552,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvg",
+ "usr": "s:7LinkKit11InstitutionV4nameSSvg",
+ "mangledName": "$s7LinkKit11InstitutionV4nameSSvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -6604,22 +5576,14 @@
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvs",
+ "usr": "s:7LinkKit11InstitutionV4nameSSvs",
+ "mangledName": "$s7LinkKit11InstitutionV4nameSSvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -6636,8 +5600,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvM",
+ "usr": "s:7LinkKit11InstitutionV4nameSSvM",
+ "mangledName": "$s7LinkKit11InstitutionV4nameSSvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -6645,147 +5609,136 @@
]
},
{
- "kind": "Var",
- "name": "userLegalName",
- "printedName": "userLegalName",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(id:name:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit11InstitutionV2id4nameACSS_SStcfc",
+ "mangledName": "$s7LinkKit11InstitutionV2id4nameACSS_SStcfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
],
- "hasStorage": true,
- "accessors": [
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit11InstitutionV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit11InstitutionV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit11InstitutionV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit11InstitutionV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit11InstitutionV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit11InstitutionV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "userEmailAddress",
- "printedName": "userEmailAddress",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKInstitution",
+ "printedName": "LinkKit.PLKInstitution",
+ "usr": "c:objc(cs)PLKInstitution"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvp",
+ "usr": "s:7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvp",
+ "mangledName": "$s7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -6794,220 +5747,423 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKInstitution",
+ "printedName": "LinkKit.PLKInstitution",
+ "usr": "c:objc(cs)PLKInstitution"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvg",
+ "usr": "s:7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvg",
+ "mangledName": "$s7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvg",
"moduleName": "LinkKit",
- "implicit": true,
+ "isFromExtension": true,
"accessorKind": "get"
- },
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit11InstitutionV",
+ "mangledName": "$s7LinkKit11InstitutionV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ConfigurationError",
+ "printedName": "ConfigurationError",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "malformedClientID",
+ "printedName": "malformedClientID",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO17malformedClientIDyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO17malformedClientIDyACSS_tcACmF",
+ "moduleName": "LinkKit"
},
{
"kind": "Var",
- "name": "userPhoneNumber",
- "printedName": "userPhoneNumber",
+ "name": "missingAuthorization",
+ "printedName": "missingAuthorization",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO20missingAuthorizationyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO20missingAuthorizationyACSS_tcACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Var",
+ "name": "noProduct",
+ "printedName": "noProduct",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO9noProductyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO9noProductyACSS_tcACmF",
+ "moduleName": "LinkKit"
},
{
"kind": "Var",
- "name": "linkCustomizationName",
- "printedName": "linkCustomizationName",
+ "name": "invalidOptionValue",
+ "printedName": "invalidOptionValue",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO18invalidOptionValueyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO18invalidOptionValueyACSS_tcACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Var",
+ "name": "invalidOptionCombination",
+ "printedName": "invalidOptionCombination",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO24invalidOptionCombinationyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO24invalidOptionCombinationyACSS_tcACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Var",
+ "name": "invalidToken",
+ "printedName": "invalidToken",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO12invalidTokenyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO12invalidTokenyACSS_tcACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Var",
+ "name": "message",
+ "printedName": "message",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvp",
+ "usr": "s:7LinkKit18ConfigurationErrorO7messageSSvp",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO7messageSSvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -7016,101 +6172,157 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvg",
+ "usr": "s:7LinkKit18ConfigurationErrorO7messageSSvg",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO7messageSSvg",
"moduleName": "LinkKit",
- "implicit": true,
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovp",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvs",
+ "usr": "s:7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovg",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovg",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "embeddedNSError",
+ "printedName": "embeddedNSError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvp",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvM",
+ "usr": "s:7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvg",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvg",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "isFromExtension": true,
+ "accessorKind": "get"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit18ConfigurationErrorO",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkExit",
+ "printedName": "LinkExit",
+ "children": [
{
"kind": "Var",
- "name": "accountSubtypes",
- "printedName": "accountSubtypes",
+ "name": "error",
+ "printedName": "error",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.AccountSubtype]",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitError?",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvp",
+ "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvp",
+ "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -7127,22 +6339,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.AccountSubtype]",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitError?",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvg",
+ "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvg",
+ "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -7159,22 +6371,22 @@
},
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.AccountSubtype]",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitError?",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvs",
+ "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvs",
+ "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -7191,8 +6403,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvM",
+ "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvM",
+ "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -7201,30 +6413,21 @@
},
{
"kind": "Var",
- "name": "oauthConfiguration",
- "printedName": "oauthConfiguration",
+ "name": "metadata",
+ "printedName": "metadata",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.OAuthNonceConfiguration?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- }
- ],
- "usr": "s:Sq"
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvp",
+ "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvp",
+ "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -7238,22 +6441,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.OAuthNonceConfiguration?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- }
- ],
- "usr": "s:Sq"
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvg",
+ "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvg",
+ "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -7270,22 +6465,14 @@
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.OAuthNonceConfiguration?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- }
- ],
- "usr": "s:Sq"
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvs",
+ "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvs",
+ "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -7302,8 +6489,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvM",
+ "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvM",
+ "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -7313,152 +6500,153 @@
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(clientName:environment:products:language:token:countryCodes:onSuccess:)",
+ "printedName": "init(error:metadata:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
},
{
"kind": "TypeNominal",
- "name": "Set",
- "printedName": "Swift.Set",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitError?",
"children": [
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
}
],
- "usr": "s:Sh"
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A4ExitV5error8metadataAcA0C5ErrorVSg_AA0C8MetadataVtcfc",
+ "mangledName": "$s7LinkKit0A4ExitV5error8metadataAcA0C5ErrorVSg_AA0C8MetadataVtcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
},
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientName11environment8products8language5token12countryCodes9onSuccessACSS_AA11EnvironmentOShyAA7ProductOGSSAC5TokenOSaySSGyAA0aO0Vctcfc",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientName11environment8products8language5token12countryCodes9onSuccessACSS_AA11EnvironmentOShyAA7ProductOGSSAC5TokenOSaySSGyAA0aO0Vctcfc",
+ "usr": "s:7LinkKit0A4ExitV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit0A4ExitV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
+ "implicit": true,
+ "throwing": true,
"init_kind": "Designated"
},
{
"kind": "Function",
- "name": "validate",
- "printedName": "validate()",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ConfigurationError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8validateAA0E5ErrorOSgyF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8validateAA0E5ErrorOSgyF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A4ExitV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit0A4ExitV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "loadSessionConfiguration",
- "printedName": "loadSessionConfiguration(_:_:_:_:_:)",
+ "name": "from",
+ "printedName": "from(_:_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Link_Workflow_Primitives_SDKResult",
+ "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult",
+ "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A4ExitV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgAHtFZ",
+ "mangledName": "$s7LinkKit0A4ExitV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgAHtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
{
"kind": "TypeNominal",
"name": "Bool",
@@ -7466,58 +6654,135 @@
"usr": "s:Sb"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token, WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token, WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "OneOf_Configuration",
- "printedName": "WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration",
- "usr": "s:13WorkflowProto09Link_Api_cA12StartRequestV19OneOf_ConfigurationO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV011loadSessionE0yySS_S2SSbyAC5TokenO_13WorkflowProto0a5_Api_aI12StartRequestV06OneOf_E0OtctF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV011loadSessionE0yySS_S2SSbyAC5TokenO_13WorkflowProto0a5_Api_aI12StartRequestV06OneOf_E0OtctF",
+ "usr": "s:7LinkKit0A4ExitV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit0A4ExitV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKLinkExit",
+ "printedName": "LinkKit.PLKLinkExit",
+ "usr": "c:objc(cs)PLKLinkExit"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvp",
+ "mangledName": "$s7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvp",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKLinkExit",
+ "printedName": "LinkKit.PLKLinkExit",
+ "usr": "c:objc(cs)PLKLinkExit"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvg",
+ "mangledName": "$s7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV",
+ "usr": "s:7LinkKit0A4ExitV",
+ "mangledName": "$s7LinkKit0A4ExitV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
"RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
"name": "AccountSubtype",
@@ -16314,15 +15579,218 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "LinkSuccess",
- "printedName": "LinkSuccess",
+ "name": "SuccessMetadata",
+ "printedName": "SuccessMetadata",
"children": [
{
"kind": "Var",
- "name": "publicToken",
- "printedName": "publicToken",
+ "name": "institution",
+ "printedName": "institution",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvs",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvM",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "accounts",
+ "printedName": "accounts",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Account]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Account]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Account]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvs",
+ "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvM",
+ "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "linkSessionID",
+ "printedName": "linkSessionID",
"children": [
{
"kind": "TypeNominal",
@@ -16332,8 +15800,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvp",
- "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvp",
+ "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasStorage",
@@ -16355,8 +15823,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvg",
- "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvg",
+ "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -16379,8 +15847,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvs",
- "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvs",
+ "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvs",
+ "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -16397,8 +15865,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvM",
- "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvM",
+ "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvM",
+ "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -16407,21 +15875,30 @@
},
{
"kind": "Var",
- "name": "metadata",
- "printedName": "metadata",
+ "name": "metadataJSON",
+ "printedName": "metadataJSON",
"children": [
{
"kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvp",
- "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvp",
+ "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -16435,14 +15912,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvg",
- "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvg",
+ "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -16459,14 +15944,22 @@
},
{
"kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvs",
- "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvs",
+ "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvs",
+ "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -16483,8 +15976,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvM",
- "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvM",
+ "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvM",
+ "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -16494,13 +15987,33 @@
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(publicToken:metadata:)",
+ "printedName": "init(institution:accounts:linkSessionID:metadataJSON:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Account]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
+ ],
+ "usr": "s:Sa"
},
{
"kind": "TypeNominal",
@@ -16510,14 +16023,23 @@
},
{
"kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A7SuccessV11publicToken8metadataACSS_AA0C8MetadataVtcfc",
- "mangledName": "$s7LinkKit0A7SuccessV11publicToken8metadataACSS_AA0C8MetadataVtcfc",
+ "usr": "s:7LinkKit15SuccessMetadataV11institution8accounts13linkSessionID12metadataJSONAcA11InstitutionV_SayAA7AccountVGS2SSgtcfc",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institution8accounts13linkSessionID12metadataJSONAcA11InstitutionV_SayAA7AccountVGS2SSgtcfc",
"moduleName": "LinkKit",
"implicit": true,
"init_kind": "Designated"
@@ -16529,9 +16051,9 @@
"children": [
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
},
{
"kind": "TypeNominal",
@@ -16541,8 +16063,8 @@
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A7SuccessV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit0A7SuccessV4fromACs7Decoder_p_tKcfc",
+ "usr": "s:7LinkKit15SuccessMetadataV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit15SuccessMetadataV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
"implicit": true,
"throwing": true,
@@ -16566,8 +16088,8 @@
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A7SuccessV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit0A7SuccessV6encode2toys7Encoder_p_tKF",
+ "usr": "s:7LinkKit15SuccessMetadataV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit15SuccessMetadataV6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"implicit": true,
"throwing": true,
@@ -16580,15 +16102,15 @@
"children": [
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
},
{
"kind": "TypeNominal",
- "name": "Link_Workflow_Primitives_SDKResult",
- "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult",
- "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV"
+ "name": "Metadata",
+ "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult.Metadata",
+ "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV8MetadataV"
},
{
"kind": "TypeNominal",
@@ -16606,8 +16128,8 @@
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A7SuccessV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgtFZ",
- "mangledName": "$s7LinkKit0A7SuccessV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgtFZ",
+ "usr": "s:7LinkKit15SuccessMetadataV4fromyAC13WorkflowProto0a1_F21_Primitives_SDKResultV0D0V_SSSgtFZ",
+ "mangledName": "$s7LinkKit15SuccessMetadataV4fromyAC13WorkflowProto0a1_F21_Primitives_SDKResultV0D0V_SSSgtFZ",
"moduleName": "LinkKit",
"static": true,
"isFromExtension": true,
@@ -16626,20 +16148,20 @@
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A7SuccessV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit0A7SuccessV2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit15SuccessMetadataV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit15SuccessMetadataV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
"isFromExtension": true,
@@ -16652,18 +16174,15 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkSuccess",
- "printedName": "LinkKit.PLKLinkSuccess",
- "usr": "c:objc(cs)PLKLinkSuccess"
+ "name": "PLKSuccessMetadata",
+ "printedName": "LinkKit.PLKSuccessMetadata",
+ "usr": "c:objc(cs)PLKSuccessMetadata"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvp",
- "mangledName": "$s7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvp",
+ "usr": "s:7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
"isFromExtension": true,
"accessors": [
{
@@ -16673,14 +16192,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkSuccess",
- "printedName": "LinkKit.PLKLinkSuccess",
- "usr": "c:objc(cs)PLKLinkSuccess"
+ "name": "PLKSuccessMetadata",
+ "printedName": "LinkKit.PLKSuccessMetadata",
+ "usr": "c:objc(cs)PLKSuccessMetadata"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvg",
- "mangledName": "$s7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvg",
+ "usr": "s:7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
@@ -16689,8 +16208,8 @@
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit0A7SuccessV",
- "mangledName": "$s7LinkKit0A7SuccessV",
+ "usr": "s:7LinkKit15SuccessMetadataV",
+ "mangledName": "$s7LinkKit15SuccessMetadataV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
@@ -16720,702 +16239,824 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
{
"kind": "TypeDecl",
- "name": "LinkExit",
- "printedName": "LinkExit",
+ "name": "ComponentPaneViewModel",
+ "printedName": "ComponentPaneViewModel",
"children": [
{
"kind": "Var",
- "name": "error",
- "printedName": "error",
+ "name": "content",
+ "printedName": "content",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitError?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ComponentPaneViewModel.Type) -> (Threads.NavigationProperties?, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Threads.NavigationProperties?, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(navigation: Threads.NavigationProperties?, content: LinkKit.Component)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Threads.NavigationProperties?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NavigationProperties",
+ "printedName": "Threads.NavigationProperties",
+ "usr": "s:7Threads20NavigationPropertiesV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "name": "Metatype",
+ "printedName": "LinkKit.ComponentPaneViewModel.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvp",
- "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO7contentyAC7Threads20NavigationPropertiesVSg_AA0C0VtcACmF",
+ "mangledName": "$s7LinkKit22ComponentPaneViewModelO7contentyAC7Threads20NavigationPropertiesVSg_AA0C0VtcACmF",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 0
+ },
+ {
+ "kind": "Var",
+ "name": "fixedFooter",
+ "printedName": "fixedFooter",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ComponentPaneViewModel.Type) -> (Threads.NavigationProperties?, LinkKit.Component, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitError?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Threads.NavigationProperties?, LinkKit.Component, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(navigation: Threads.NavigationProperties?, content: LinkKit.Component, footer: LinkKit.Component)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Threads.NavigationProperties?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NavigationProperties",
+ "printedName": "Threads.NavigationProperties",
+ "usr": "s:7Threads20NavigationPropertiesV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvg",
- "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitError?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ComponentPaneViewModel.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvs",
- "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvM",
- "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
- ]
- },
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO11fixedFooteryAC7Threads20NavigationPropertiesVSg_AA0C0VAJtcACmF",
+ "mangledName": "$s7LinkKit22ComponentPaneViewModelO11fixedFooteryAC7Threads20NavigationPropertiesVSg_AA0C0VAJtcACmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO",
+ "mangledName": "$s7LinkKit22ComponentPaneViewModelO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isEnumExhaustive": true,
+ "conformances": [
{
- "kind": "Var",
- "name": "metadata",
- "printedName": "metadata",
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ComponentPaneViewController",
+ "printedName": "ComponentPaneViewController",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(with:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "ComponentPaneViewController",
+ "printedName": "LinkKit.ComponentPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvp",
- "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC4withAcA0cdE5ModelO_tcfc",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC4withAcA0cdE5ModelO_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
+ "Custom",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ComponentPaneViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "ComponentPaneViewController",
+ "printedName": "LinkKit.ComponentPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvg",
- "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvg",
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "TransitionAnimation",
+ "printedName": "TransitionAnimation",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "push",
+ "printedName": "push",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ComponentPaneViewController.TransitionAnimation.Type) -> LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4pushyA2EmF",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4pushyA2EmF",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "fixedbinaryorder": 0
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "Var",
+ "name": "pop",
+ "printedName": "pop",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ComponentPaneViewController.TransitionAnimation.Type) -> LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO3popyA2EmF",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO3popyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvs",
- "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvs",
+ "declKind": "Func",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO2eeoiySbAE_AEtFZ",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO2eeoiySbAE_AEtFZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "Var",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvM",
- "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvM",
+ "declKind": "Var",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivp",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivp",
"moduleName": "LinkKit",
"implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(error:metadata:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivg",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitError?",
+ "kind": "Function",
+ "name": "hash",
+ "printedName": "hash(into:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "declKind": "Func",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4hash4intoys6HasherVz_tF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A4ExitV5error8metadataAcA0C5ErrorVSg_AA0C8MetadataVtcfc",
- "mangledName": "$s7LinkKit0A4ExitV5error8metadataAcA0C5ErrorVSg_AA0C8MetadataVtcfc",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isEnumExhaustive": true,
+ "conformances": [
{
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A4ExitV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit0A4ExitV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
},
{
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A4ExitV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit0A4ExitV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Function",
- "name": "from",
- "printedName": "from(_:_:_:)",
+ "name": "transition",
+ "printedName": "transition(to:animation:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- },
- {
- "kind": "TypeNominal",
- "name": "Link_Workflow_Primitives_SDKResult",
- "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult",
- "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
},
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
}
],
+ "hasDefaultArg": true,
"usr": "s:Sq"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A4ExitV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgAHtFZ",
- "mangledName": "$s7LinkKit0A4ExitV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgAHtFZ",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC10transition2to9animationyAA0cdE5ModelO_AC19TransitionAnimationOSgtF",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC10transition2to9animationyAA0cdE5ModelO_AC19TransitionAnimationOSgtF",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl"
+ ],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A4ExitV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit0A4ExitV2eeoiySbAC_ACtFZ",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC11viewDidLoadyyF",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "RawDocComment"
+ ],
"funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkExit",
- "printedName": "LinkKit.PLKLinkExit",
- "usr": "c:objc(cs)PLKLinkExit"
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvp",
- "mangledName": "$s7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvp",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC9viewModel33_AAA813881AE0A64F5A37E01EE9BE9C36LLAA0cdeH0Ovp",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC9viewModel33_AAA813881AE0A64F5A37E01EE9BE9C36LLAA0cdeH0Ovp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "AccessControl"
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
],
- "isFromExtension": true,
- "accessors": [
+ "fixedbinaryorder": 0,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "layoutView",
+ "printedName": "layoutView",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "UIKit.UIView?",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkExit",
- "printedName": "LinkKit.PLKLinkExit",
- "usr": "c:objc(cs)PLKLinkExit"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvg",
- "mangledName": "$s7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit0A4ExitV",
- "mangledName": "$s7LinkKit0A4ExitV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC06layoutE033_AAA813881AE0A64F5A37E01EE9BE9C36LLSo6UIViewCSgvp",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC06layoutE033_AAA813881AE0A64F5A37E01EE9BE9C36LLSo6UIViewCSgvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 1,
+ "hasStorage": true
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LinkEvent",
- "printedName": "LinkEvent",
- "children": [
{
"kind": "Var",
- "name": "eventName",
- "printedName": "eventName",
+ "name": "layoutConstraints",
+ "printedName": "layoutConstraints",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Array",
+ "printedName": "[UIKit.NSLayoutConstraint]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSLayoutConstraint",
+ "printedName": "UIKit.NSLayoutConstraint",
+ "usr": "c:objc(cs)NSLayoutConstraint"
+ }
+ ],
+ "usr": "s:Sa"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovp",
- "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovp",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC17layoutConstraints33_AAA813881AE0A64F5A37E01EE9BE9C36LLSaySo18NSLayoutConstraintCGvp",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC17layoutConstraints33_AAA813881AE0A64F5A37E01EE9BE9C36LLSaySo18NSLayoutConstraintCGvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovg",
- "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovs",
- "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0OvM",
- "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0OvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
+ "fixedbinaryorder": 2,
+ "hasStorage": true
},
{
- "kind": "Var",
- "name": "metadata",
- "printedName": "metadata",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvp",
- "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvg",
- "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "name": "ComponentPaneViewController",
+ "printedName": "LinkKit.ComponentPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvs",
- "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvM",
- "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "usr": "s:Sq"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit0A5EventV4fromACs7Decoder_p_tKcfc",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "AccessControl"
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
],
- "throwing": true,
"init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(eventName:metadata:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV9eventName8metadataAcA0cE0O_AA0C8MetadataVtcfc",
- "mangledName": "$s7LinkKit0A5EventV9eventName8metadataAcA0cE0O_AA0C8MetadataVtcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "SDKReleaseLoader",
+ "printedName": "SDKReleaseLoader",
+ "children": [
{
"kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "name": "loadAvailableSDKVersions",
+ "printedName": "loadAvailableSDKVersions(completionHandler:)",
"children": [
{
"kind": "TypeNominal",
@@ -17423,53 +17064,101 @@
"printedName": "()"
},
{
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Result<[LinkKit.GithubRelease], Swift.Error>) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Result",
+ "printedName": "Swift.Result<[LinkKit.GithubRelease], Swift.Error>",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.GithubRelease]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GithubRelease",
+ "printedName": "LinkKit.GithubRelease",
+ "usr": "s:7LinkKit13GithubReleaseV"
+ }
+ ],
+ "usr": "s:Sa"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:s6ResultO"
+ }
+ ]
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A5EventV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit0A5EventV6encode2toys7Encoder_p_tKF",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA13GithubReleaseVGs5Error_pGc_tF",
+ "mangledName": "$s7LinkKit16SDKReleaseLoaderP24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA13GithubReleaseVGs5Error_pGc_tF",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.SDKReleaseLoader>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
"funcSelfKind": "NonMutating"
- },
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP",
+ "mangledName": "$s7LinkKit16SDKReleaseLoaderP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "GithubSDKReleaseLoader",
+ "printedName": "GithubSDKReleaseLoader",
+ "children": [
{
"kind": "TypeDecl",
- "name": "CodingKeys",
- "printedName": "CodingKeys",
+ "name": "ReleaseLoaderError",
+ "printedName": "ReleaseLoaderError",
"children": [
{
"kind": "Var",
- "name": "eventName",
- "printedName": "eventName",
+ "name": "invalidURL",
+ "printedName": "invalidURL",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkEvent.CodingKeys.Type) -> LinkKit.LinkEvent.CodingKeys",
+ "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.LinkEvent.CodingKeys.Type",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
}
]
}
@@ -17477,37 +17166,37 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO9eventNameyA2EmF",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO9eventNameyA2EmF",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO10invalidURLyA2EmF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO10invalidURLyA2EmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 0
},
{
"kind": "Var",
- "name": "metadata",
- "printedName": "metadata",
+ "name": "missingData",
+ "printedName": "missingData",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkEvent.CodingKeys.Type) -> LinkKit.LinkEvent.CodingKeys",
+ "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.LinkEvent.CodingKeys.Type",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
}
]
}
@@ -17515,180 +17204,137 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8metadatayA2EmF",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8metadatayA2EmF",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO11missingDatayA2EmF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO11missingDatayA2EmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 1
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
+ "kind": "Var",
+ "name": "api",
+ "printedName": "api",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.LinkEvent.CodingKeys?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> (Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueAESgSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO3apiyAEs0G0_pcAEmF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO3apiyAEs0G0_pcAEmF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "fixedbinaryorder": 2
},
{
"kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
+ "name": "decoding",
+ "printedName": "decoding",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueSSvp",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueSSvg",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "stringValue",
- "printedName": "stringValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueSSvp",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> (Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueSSvg",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.LinkEvent.CodingKeys?",
- "children": [
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueAESgSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO8decodingyAEs0G0_pcAEmF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO8decodingyAEs0G0_pcAEmF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "fixedbinaryorder": 3
},
{
"kind": "Var",
- "name": "intValue",
- "printedName": "intValue",
+ "name": "errorDescription",
+ "printedName": "errorDescription",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.Int?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueSiSgvp",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueSiSgvp",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvp",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvp",
"moduleName": "LinkKit",
- "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -17698,127 +17344,46 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.Int?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueSiSgvg",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueSiSgvg",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvg",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvg",
"moduleName": "LinkKit",
- "implicit": true,
"accessorKind": "get"
}
]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(intValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.LinkEvent.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueAESgSi_tcfc",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueAESgSi_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "enumRawTypeName": "String",
"isEnumExhaustive": true,
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "CodingKey",
- "printedName": "CodingKey",
- "usr": "s:s9CodingKeyP",
- "mangledName": "$ss9CodingKeyP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "LocalizedError",
+ "printedName": "LocalizedError",
+ "usr": "s:10Foundation14LocalizedErrorP",
+ "mangledName": "$s10Foundation14LocalizedErrorP"
},
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
},
{
"kind": "Conformance",
@@ -17830,254 +17395,224 @@
]
},
{
- "kind": "Var",
- "name": "dateFormatter",
- "printedName": "dateFormatter",
+ "kind": "Function",
+ "name": "loadAvailableSDKVersions",
+ "printedName": "loadAvailableSDKVersions(completionHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ISO8601DateFormatter",
- "printedName": "Foundation.ISO8601DateFormatter",
- "usr": "c:objc(cs)NSISO8601DateFormatter"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvpZ",
- "mangledName": "$s7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage"
- ],
- "isFromExtension": true,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "name": "Void",
+ "printedName": "()"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Result<[LinkKit.GithubRelease], Swift.Error>) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ISO8601DateFormatter",
- "printedName": "Foundation.ISO8601DateFormatter",
- "usr": "c:objc(cs)NSISO8601DateFormatter"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Result",
+ "printedName": "Swift.Result<[LinkKit.GithubRelease], Swift.Error>",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.GithubRelease]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GithubRelease",
+ "printedName": "LinkKit.GithubRelease",
+ "usr": "s:7LinkKit13GithubReleaseV"
+ }
+ ],
+ "usr": "s:Sa"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:s6ResultO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvgZ",
- "mangledName": "$s7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA0C7ReleaseVGs5Error_pGc_tF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA0C7ReleaseVGs5Error_pGc_tF",
+ "moduleName": "LinkKit",
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Function",
- "name": "from",
- "printedName": "from(_:_:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Link_Workflow_Nodes_Panes_SDKEvent",
- "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_SDKEvent",
- "usr": "s:13WorkflowProto05Link_A21_Nodes_Panes_SDKEventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "GithubSDKReleaseLoader",
+ "printedName": "LinkKit.GithubSDKReleaseLoader",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A5EventV4fromyAC13WorkflowProto0a1_E21_Nodes_Panes_SDKEventV_SSSgtFZ",
- "mangledName": "$s7LinkKit0A5EventV4fromyAC13WorkflowProto0a1_E21_Nodes_Panes_SDKEventV_SSSgtFZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderVACycfc",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderVACycfc",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV",
+ "moduleName": "LinkKit",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "SDKReleaseLoader",
+ "printedName": "SDKReleaseLoader",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP",
+ "mangledName": "$s7LinkKit16SDKReleaseLoaderP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkHandlerAction",
+ "printedName": "LinkHandlerAction",
+ "children": [
{
"kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "name": "composeMail",
+ "printedName": "composeMail(to:using:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
},
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A5EventV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit0A5EventV2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit0A13HandlerActionV11composeMail2to5usingy10Foundation3URLV_So16UIViewControllerCtFZ",
+ "mangledName": "$s7LinkKit0A13HandlerActionV11composeMail2to5usingy10Foundation3URLV_So16UIViewControllerCtFZ",
"moduleName": "LinkKit",
"static": true,
- "isFromExtension": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
"funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkEvent",
- "printedName": "LinkKit.PLKLinkEvent",
- "usr": "c:objc(cs)PLKLinkEvent"
+ "name": "LinkHandlerAction",
+ "printedName": "LinkKit.LinkHandlerAction",
+ "usr": "s:7LinkKit0A13HandlerActionV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvp",
- "mangledName": "$s7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A13HandlerActionVACycfc",
+ "mangledName": "$s7LinkKit0A13HandlerActionVACycfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKLinkEvent",
- "printedName": "LinkKit.PLKLinkEvent",
- "usr": "c:objc(cs)PLKLinkEvent"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvg",
- "mangledName": "$s7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
+ "implicit": true,
+ "init_kind": "Designated"
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit0A5EventV",
- "mangledName": "$s7LinkKit0A5EventV",
+ "usr": "s:7LinkKit0A13HandlerActionV",
+ "mangledName": "$s7LinkKit0A13HandlerActionV",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "ConfigurationError",
- "printedName": "ConfigurationError",
+ "name": "RateLimitErrorCode",
+ "printedName": "RateLimitErrorCode",
"children": [
{
"kind": "Var",
- "name": "malformedClientID",
- "printedName": "malformedClientID",
+ "name": "accountsLimit",
+ "printedName": "accountsLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18085,56 +17620,39 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO17malformedClientIDyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO17malformedClientIDyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "missingAuthorization",
- "printedName": "missingAuthorization",
+ "name": "additionLimit",
+ "printedName": "additionLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18142,56 +17660,79 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO20missingAuthorizationyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO20missingAuthorizationyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "noProduct",
- "printedName": "noProduct",
+ "name": "authLimit",
+ "printedName": "authLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04authD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "identityLimit",
+ "printedName": "identityLimit",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18199,56 +17740,79 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO9noProductyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO9noProductyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "invalidOptionValue",
- "printedName": "invalidOptionValue",
+ "name": "incomeLimit",
+ "printedName": "incomeLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "itemGetLimit",
+ "printedName": "itemGetLimit",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18256,56 +17820,79 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO18invalidOptionValueyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO18invalidOptionValueyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "invalidOptionCombination",
- "printedName": "invalidOptionCombination",
+ "name": "rateLimit",
+ "printedName": "rateLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "transactionsLimit",
+ "printedName": "transactionsLimit",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18313,56 +17900,52 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO24invalidOptionCombinationyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO24invalidOptionCombinationyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "invalidToken",
- "printedName": "invalidToken",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> (Swift.String) -> LinkKit.RateLimitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(Swift.String) -> LinkKit.RateLimitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18370,14 +17953,41 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO12invalidTokenyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO12invalidTokenyACSS_tcACmF",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO7unknownyACSScACmF",
"moduleName": "LinkKit"
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO6stringACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
{
"kind": "Var",
- "name": "message",
- "printedName": "message",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
@@ -18387,9 +17997,12 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18ConfigurationErrorO7messageSSvp",
- "mangledName": "$s7LinkKit18ConfigurationErrorO7messageSSvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
"accessors": [
{
"kind": "Accessor",
@@ -18404,8 +18017,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18ConfigurationErrorO7messageSSvg",
- "mangledName": "$s7LinkKit18ConfigurationErrorO7messageSSvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
"accessorKind": "get"
}
@@ -18413,21 +18026,28 @@
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "accountsLimitString",
+ "printedName": "accountsLimitString",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovp",
- "mangledName": "$s7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvpZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18436,37 +18056,48 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovg",
- "mangledName": "$s7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "embeddedNSError",
- "printedName": "embeddedNSError",
+ "name": "additionLimitString",
+ "printedName": "additionLimitString",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvp",
- "mangledName": "$s7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD6StringSSvpZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18475,189 +18106,148 @@
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
"declKind": "Accessor",
- "usr": "s:7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvg",
- "mangledName": "$s7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD6StringSSvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit18ConfigurationErrorO",
- "mangledName": "$s7LinkKit18ConfigurationErrorO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Environment",
- "printedName": "Environment",
- "children": [
{
"kind": "Var",
- "name": "production",
- "printedName": "production",
+ "name": "authLimitString",
+ "printedName": "authLimitString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Environment.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit11EnvironmentO10productionyA2CmF",
- "mangledName": "$s7LinkKit11EnvironmentO10productionyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04authD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "development",
- "printedName": "development",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Environment.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04authD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD6StringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit11EnvironmentO11developmentyA2CmF",
- "mangledName": "$s7LinkKit11EnvironmentO11developmentyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "sandbox",
- "printedName": "sandbox",
+ "name": "identityLimitString",
+ "printedName": "identityLimitString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD6StringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Environment.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD6StringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit11EnvironmentO7sandboxyA2CmF",
- "mangledName": "$s7LinkKit11EnvironmentO7sandboxyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "baseURL",
- "printedName": "baseURL",
+ "name": "incomeLimitString",
+ "printedName": "incomeLimitString",
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvp",
- "mangledName": "$s7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18666,23 +18256,28 @@
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvg",
- "mangledName": "$s7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "itemGetLimitString",
+ "printedName": "itemGetLimitString",
"children": [
{
"kind": "TypeNominal",
@@ -18692,12 +18287,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11EnvironmentO11descriptionSSvp",
- "mangledName": "$s7LinkKit11EnvironmentO11descriptionSSvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18712,62 +18312,42 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11EnvironmentO11descriptionSSvg",
- "mangledName": "$s7LinkKit11EnvironmentO11descriptionSSvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11EnvironmentO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit11EnvironmentO2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
{
"kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
+ "name": "rateLimitString",
+ "printedName": "rateLimitString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11EnvironmentO9hashValueSivp",
- "mangledName": "$s7LinkKit11EnvironmentO9hashValueSivp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD6StringSSvpZ",
"moduleName": "LinkKit",
- "implicit": true,
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18776,49 +18356,28 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11EnvironmentO9hashValueSivg",
- "mangledName": "$s7LinkKit11EnvironmentO9hashValueSivg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11EnvironmentO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit11EnvironmentO4hash4intoys6HasherVz_tF",
- "moduleName": "LinkKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
{
"kind": "Var",
- "name": "valueForQueryString",
- "printedName": "valueForQueryString",
+ "name": "transactionsLimitString",
+ "printedName": "transactionsLimitString",
"children": [
{
"kind": "TypeNominal",
@@ -18828,13 +18387,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11EnvironmentO19valueForQueryStringSSvp",
- "mangledName": "$s7LinkKit11EnvironmentO19valueForQueryStringSSvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "isFromExtension": true,
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18849,65 +18412,88 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11EnvironmentO19valueForQueryStringSSvg",
- "mangledName": "$s7LinkKit11EnvironmentO19valueForQueryStringSSvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
- "kind": "Function",
- "name": "fuzzyMatches",
- "printedName": "fuzzyMatches(linkToken:)",
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKRateLimitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKRateLimitErrorCode",
+ "printedName": "LinkKit.PLKRateLimitErrorCode",
+ "usr": "c:@E@PLKRateLimitErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit11EnvironmentO12fuzzyMatches9linkTokenSbSS_tF",
- "mangledName": "$s7LinkKit11EnvironmentO12fuzzyMatches9linkTokenSbSS_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvp",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
"isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKRateLimitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKRateLimitErrorCode",
+ "printedName": "LinkKit.PLKRateLimitErrorCode",
+ "usr": "c:@E@PLKRateLimitErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvg",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit11EnvironmentO",
- "mangledName": "$s7LinkKit11EnvironmentO",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
},
{
"kind": "Conformance",
@@ -18915,412 +18501,111 @@
"printedName": "CustomStringConvertible",
"usr": "s:s23CustomStringConvertibleP",
"mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "Product",
- "printedName": "Product",
+ "name": "SemanticVersion",
+ "printedName": "SemanticVersion",
"children": [
{
- "kind": "Var",
- "name": "assets",
- "printedName": "assets",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(versionString:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.SemanticVersion?",
"children": [
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO6assetsyA2CmF",
- "mangledName": "$s7LinkKit7ProductO6assetsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "auth",
- "printedName": "auth",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO4authyA2CmF",
- "mangledName": "$s7LinkKit7ProductO4authyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "depositSwitch",
- "printedName": "depositSwitch",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO13depositSwitchyA2CmF",
- "mangledName": "$s7LinkKit7ProductO13depositSwitchyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identity",
- "printedName": "identity",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO8identityyA2CmF",
- "mangledName": "$s7LinkKit7ProductO8identityyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "income",
- "printedName": "income",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO6incomeyA2CmF",
- "mangledName": "$s7LinkKit7ProductO6incomeyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "investments",
- "printedName": "investments",
- "children": [
+ ],
+ "usr": "s:Sq"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO11investmentsyA2CmF",
- "mangledName": "$s7LinkKit7ProductO11investmentsyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit15SemanticVersionV13versionStringACSgSS_tcfc",
+ "mangledName": "$s7LinkKit15SemanticVersionV13versionStringACSgSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "liabilities",
- "printedName": "liabilities",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO11liabilitiesyA2CmF",
- "mangledName": "$s7LinkKit7ProductO11liabilitiesyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "liabilitiesReport",
- "printedName": "liabilitiesReport",
+ "name": "versionString",
+ "printedName": "versionString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO17liabilitiesReportyA2CmF",
- "mangledName": "$s7LinkKit7ProductO17liabilitiesReportyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit15SemanticVersionV13versionStringSSvp",
+ "mangledName": "$s7LinkKit15SemanticVersionV13versionStringSSvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "paymentInitiation",
- "printedName": "paymentInitiation",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO17paymentInitiationyA2CmF",
- "mangledName": "$s7LinkKit7ProductO17paymentInitiationyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "transactions",
- "printedName": "transactions",
- "children": [
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SemanticVersionV13versionStringSSvg",
+ "mangledName": "$s7LinkKit15SemanticVersionV13versionStringSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO12transactionsyA2CmF",
- "mangledName": "$s7LinkKit7ProductO12transactionsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
@@ -19336,8 +18621,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO11descriptionSSvp",
- "mangledName": "$s7LinkKit7ProductO11descriptionSSvp",
+ "usr": "s:7LinkKit15SemanticVersionV11descriptionSSvp",
+ "mangledName": "$s7LinkKit15SemanticVersionV11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -19356,8 +18641,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO11descriptionSSvg",
- "mangledName": "$s7LinkKit7ProductO11descriptionSSvg",
+ "usr": "s:7LinkKit15SemanticVersionV11descriptionSSvg",
+ "mangledName": "$s7LinkKit15SemanticVersionV11descriptionSSvg",
"moduleName": "LinkKit",
"accessorKind": "get"
}
@@ -19365,28 +18650,24 @@
},
{
"kind": "Var",
- "name": "assetsString",
- "printedName": "assetsString",
+ "name": "major",
+ "printedName": "major",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO12assetsStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO12assetsStringSSvpZ",
+ "usr": "s:7LinkKit15SemanticVersionV5majorSivp",
+ "mangledName": "$s7LinkKit15SemanticVersionV5majorSivp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -19395,48 +18676,39 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO12assetsStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO12assetsStringSSvgZ",
+ "usr": "s:7LinkKit15SemanticVersionV5majorSivg",
+ "mangledName": "$s7LinkKit15SemanticVersionV5majorSivg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "authString",
- "printedName": "authString",
+ "name": "minor",
+ "printedName": "minor",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO10authStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO10authStringSSvpZ",
+ "usr": "s:7LinkKit15SemanticVersionV5minorSivp",
+ "mangledName": "$s7LinkKit15SemanticVersionV5minorSivp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -19445,48 +18717,39 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO10authStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO10authStringSSvgZ",
+ "usr": "s:7LinkKit15SemanticVersionV5minorSivg",
+ "mangledName": "$s7LinkKit15SemanticVersionV5minorSivg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "depositSwitchString",
- "printedName": "depositSwitchString",
+ "name": "patch",
+ "printedName": "patch",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO19depositSwitchStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO19depositSwitchStringSSvpZ",
+ "usr": "s:7LinkKit15SemanticVersionV5patchSivp",
+ "mangledName": "$s7LinkKit15SemanticVersionV5patchSivp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -19495,378 +18758,125 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO19depositSwitchStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO19depositSwitchStringSSvgZ",
+ "usr": "s:7LinkKit15SemanticVersionV5patchSivg",
+ "mangledName": "$s7LinkKit15SemanticVersionV5patchSivg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "identityString",
- "printedName": "identityString",
+ "name": "components",
+ "printedName": "components",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO14identityStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO14identityStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Array",
+ "printedName": "[Swift.Int]",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO14identityStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO14identityStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "incomeString",
- "printedName": "incomeString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "usr": "s:Sa"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO12incomeStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO12incomeStringSSvpZ",
+ "usr": "s:7LinkKit15SemanticVersionV10components33_5723E2495FAE01EBDD8BE3861CED1ED5LLSaySiGvp",
+ "mangledName": "$s7LinkKit15SemanticVersionV10components33_5723E2495FAE01EBDD8BE3861CED1ED5LLSaySiGvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
+ "fixedbinaryorder": 1,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO12incomeStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO12incomeStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
- "kind": "Var",
- "name": "investmentsString",
- "printedName": "investmentsString",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO17investmentsStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO17investmentsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO17investmentsStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO17investmentsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "liabilitiesString",
- "printedName": "liabilitiesString",
- "children": [
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO17liabilitiesStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO17liabilitiesStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO17liabilitiesStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO17liabilitiesStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "liabilitiesReportString",
- "printedName": "liabilitiesReportString",
- "children": [
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO23liabilitiesReportStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO23liabilitiesReportStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit15SemanticVersionV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit15SemanticVersionV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO23liabilitiesReportStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO23liabilitiesReportStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "paymentInitiationString",
- "printedName": "paymentInitiationString",
+ "kind": "Function",
+ "name": "<",
+ "printedName": "<(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO23paymentInitiationStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO23paymentInitiationStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO23paymentInitiationStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO23paymentInitiationStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "transactionsString",
- "printedName": "transactionsString",
- "children": [
+ "kind": "TypeNominal",
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO18transactionsStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO18transactionsStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit15SemanticVersionV1loiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit15SemanticVersionV1loiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO18transactionsStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO18transactionsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "name": ">",
+ "printedName": ">(_:_:)",
"children": [
{
"kind": "TypeNominal",
@@ -19876,154 +18886,34 @@
},
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
},
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit7ProductO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit7ProductO2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit15SemanticVersionV1goiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit15SemanticVersionV1goiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO9hashValueSivp",
- "mangledName": "$s7LinkKit7ProductO9hashValueSivp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO9hashValueSivg",
- "mangledName": "$s7LinkKit7ProductO9hashValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
+ "declAttributes": [
+ "AccessControl"
],
- "declKind": "Func",
- "usr": "s:7LinkKit7ProductO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit7ProductO4hash4intoys6HasherVz_tF",
- "moduleName": "LinkKit",
- "implicit": true,
"funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "allCases",
- "printedName": "allCases",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Product]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO8allCasesSayACGvpZ",
- "mangledName": "$s7LinkKit7ProductO8allCasesSayACGvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Product]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO8allCasesSayACGvgZ",
- "mangledName": "$s7LinkKit7ProductO8allCasesSayACGvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "accessorKind": "get"
- }
- ]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit7ProductO",
- "mangledName": "$s7LinkKit7ProductO",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit15SemanticVersionV",
+ "mangledName": "$s7LinkKit15SemanticVersionV",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"conformances": [
{
@@ -20035,10 +18925,10 @@
},
{
"kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
},
{
"kind": "Conformance",
@@ -20049,887 +18939,1018 @@
},
{
"kind": "Conformance",
- "name": "CaseIterable",
- "printedName": "CaseIterable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "AllCases",
- "printedName": "AllCases",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Product]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sa"
- }
- ]
- }
- ],
- "usr": "s:s12CaseIterableP",
- "mangledName": "$ss12CaseIterableP"
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
{
"kind": "TypeDecl",
- "name": "VerificationStatus",
- "printedName": "VerificationStatus",
+ "name": "EmbeddedSearchModuleView",
+ "printedName": "EmbeddedSearchModuleView",
"children": [
{
- "kind": "Var",
- "name": "pendingAutomaticVerification",
- "printedName": "pendingAutomaticVerification",
+ "kind": "TypeDecl",
+ "name": "Style",
+ "printedName": "Style",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
+ "kind": "Var",
+ "name": "primary",
+ "printedName": "primary",
"children": [
{
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.VerificationStatus.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18VerificationStatusO016pendingAutomaticC0yA2CmF",
- "mangledName": "$s7LinkKit18VerificationStatusO016pendingAutomaticC0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "pendingManualVerification",
- "printedName": "pendingManualVerification",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.VerificationStatus.Type",
- "children": [
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ },
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18VerificationStatusO013pendingManualC0yA2CmF",
- "mangledName": "$s7LinkKit18VerificationStatusO013pendingManualC0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "manuallyVerified",
- "printedName": "manuallyVerified",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO7primaryyA2EmF",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO7primaryyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
+ "kind": "Var",
+ "name": "secondary",
+ "printedName": "secondary",
"children": [
{
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.VerificationStatus.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18VerificationStatusO16manuallyVerifiedyA2CmF",
- "mangledName": "$s7LinkKit18VerificationStatusO16manuallyVerifiedyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9secondaryyA2EmF",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9secondaryyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.VerificationStatus.Type) -> (Swift.String) -> LinkKit.VerificationStatus",
+ "kind": "Var",
+ "name": "tertiary",
+ "printedName": "tertiary",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String) -> LinkKit.VerificationStatus",
+ "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ }
+ ]
}
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8tertiaryyA2EmF",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8tertiaryyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 2
+ },
+ {
+ "kind": "Var",
+ "name": "textKind",
+ "printedName": "textKind",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.VerificationStatus.Type",
+ "name": "TextKind",
+ "printedName": "Threads.TextKind",
+ "usr": "s:7Threads8TextKindO"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovp",
+ "moduleName": "LinkKit",
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "TextKind",
+ "printedName": "Threads.TextKind",
+ "usr": "s:7Threads8TextKindO"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovg",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18VerificationStatusO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit18VerificationStatusO7unknownyACSScACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
},
{
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18VerificationStatusO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit18VerificationStatusO4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.VerificationStatus?",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
}
],
- "usr": "s:Sq"
+ "declKind": "Func",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO2eeoiySbAE_AEtFZ",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO2eeoiySbAE_AEtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18VerificationStatusO8rawValueACSgSS_tcfc",
- "mangledName": "$s7LinkKit18VerificationStatusO8rawValueACSgSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18VerificationStatusO11descriptionSSvp",
- "mangledName": "$s7LinkKit18VerificationStatusO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "Var",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18VerificationStatusO11descriptionSSvg",
- "mangledName": "$s7LinkKit18VerificationStatusO11descriptionSSvg",
+ "declKind": "Var",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivp",
"moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivg",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "Function",
+ "name": "hash",
+ "printedName": "hash(into:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO4hash4intoys6HasherVz_tF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18VerificationStatusO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit18VerificationStatusO6encode2toys7Encoder_p_tKF",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
],
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
},
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(viewModel:style:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "EmbeddedSearchModuleView",
+ "printedName": "LinkKit.EmbeddedSearchModuleView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView"
},
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "EmbeddedSearchModuleViewModel",
+ "printedName": "Workflow.EmbeddedSearchModuleViewModel",
+ "usr": "s:8Workflow29EmbeddedSearchModuleViewModelC"
},
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18VerificationStatusO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit18VerificationStatusO2eeoiySbAC_ACtFZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC9viewModel5styleAC8Workflow0cdefH0C_AC5StyleOtcfc",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC9viewModel5styleAC8Workflow0cdefH0C_AC5StyleOtcfc",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "declAttributes": [
+ "Custom",
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKVerificationStatus",
- "printedName": "LinkKit.PLKVerificationStatus",
- "usr": "c:objc(cs)PLKVerificationStatus"
+ "name": "EmbeddedSearchModuleViewModel",
+ "printedName": "Workflow.EmbeddedSearchModuleViewModel",
+ "usr": "s:8Workflow29EmbeddedSearchModuleViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvp",
- "mangledName": "$s7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC9viewModel33_8B1E8952538FE6432CBE3AC02A54F6CBLL8Workflow0cdefH0Cvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC9viewModel33_8B1E8952538FE6432CBE3AC02A54F6CBLL8Workflow0cdefH0Cvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKVerificationStatus",
- "printedName": "LinkKit.PLKVerificationStatus",
- "usr": "c:objc(cs)PLKVerificationStatus"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvg",
- "mangledName": "$s7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit18VerificationStatusO",
- "mangledName": "$s7LinkKit18VerificationStatusO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Account",
- "printedName": "Account",
- "children": [
{
"kind": "Var",
- "name": "id",
- "printedName": "id",
+ "name": "style",
+ "printedName": "style",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV2idSSvp",
- "mangledName": "$s7LinkKit7AccountV2idSSvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5style33_8B1E8952538FE6432CBE3AC02A54F6CBLLAC5StyleOvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5style33_8B1E8952538FE6432CBE3AC02A54F6CBLLAC5StyleOvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "fixedbinaryorder": 1,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV2idSSvg",
- "mangledName": "$s7LinkKit7AccountV2idSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "name",
- "printedName": "name",
+ "name": "hStack",
+ "printedName": "hStack",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "UIStackView",
+ "printedName": "UIKit.UIStackView",
+ "usr": "c:objc(cs)UIStackView"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV4nameSSvp",
- "mangledName": "$s7LinkKit7AccountV4nameSSvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC6hStack33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo07UIStackF0Cvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC6hStack33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo07UIStackF0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "fixedbinaryorder": 2,
"isLet": true,
- "hasStorage": true,
- "accessors": [
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "tapGesture",
+ "printedName": "tapGesture",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV4nameSSvg",
- "mangledName": "$s7LinkKit7AccountV4nameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "UITapGestureRecognizer",
+ "printedName": "UIKit.UITapGestureRecognizer",
+ "usr": "c:objc(cs)UITapGestureRecognizer"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC10tapGesture33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo05UITapH10RecognizerCvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC10tapGesture33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo05UITapH10RecognizerCvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 3,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "mask",
- "printedName": "mask",
+ "name": "$__lazy_storage_$_leadingAsset",
+ "printedName": "$__lazy_storage_$_leadingAsset",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Threads.RenderedAsset?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "RenderedAsset",
+ "printedName": "Threads.RenderedAsset",
+ "usr": "c:@M@Threads@objc(cs)RenderedAsset"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV4maskSSSgvp",
- "mangledName": "$s7LinkKit7AccountV4maskSSSgvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC30$__lazy_storage_$_leadingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC30$__lazy_storage_$_leadingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV4maskSSSgvg",
- "mangledName": "$s7LinkKit7AccountV4maskSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
+ "fixedbinaryorder": 4,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "subtype",
- "printedName": "subtype",
+ "name": "$__lazy_storage_$_text",
+ "printedName": "$__lazy_storage_$_text",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "Optional",
+ "printedName": "UIKit.UILabel?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UILabel",
+ "printedName": "UIKit.UILabel",
+ "usr": "c:objc(cs)UILabel"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV7subtypeAA0C7SubtypeOvp",
- "mangledName": "$s7LinkKit7AccountV7subtypeAA0C7SubtypeOvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC22$__lazy_storage_$_text33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC22$__lazy_storage_$_text33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 5,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "$__lazy_storage_$_secondaryText",
+ "printedName": "$__lazy_storage_$_secondaryText",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "UIKit.UILabel?",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "UILabel",
+ "printedName": "UIKit.UILabel",
+ "usr": "c:objc(cs)UILabel"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV7subtypeAA0C7SubtypeOvg",
- "mangledName": "$s7LinkKit7AccountV7subtypeAA0C7SubtypeOvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_secondaryText33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_secondaryText33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "HasStorage",
+ "Final"
+ ],
+ "fixedbinaryorder": 6,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "verificationStatus",
- "printedName": "verificationStatus",
+ "name": "$__lazy_storage_$_trailingAsset",
+ "printedName": "$__lazy_storage_$_trailingAsset",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.VerificationStatus?",
+ "printedName": "Threads.RenderedAsset?",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "RenderedAsset",
+ "printedName": "Threads.RenderedAsset",
+ "usr": "c:@M@Threads@objc(cs)RenderedAsset"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvp",
- "mangledName": "$s7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_trailingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_trailingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.VerificationStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvg",
- "mangledName": "$s7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(id:name:mask:subtype:verificationStatus:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
- },
+ "fixedbinaryorder": 7,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(frame:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EmbeddedSearchModuleView",
+ "printedName": "LinkKit.EmbeddedSearchModuleView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
+ "name": "CGRect",
+ "printedName": "CoreFoundation.CGRect",
+ "usr": "c:@S@CGRect"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView(im)initWithFrame:",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5frameACSo6CGRectV_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithFrame:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIView",
+ "superclassNames": [
+ "UIKit.UIView",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "__DefaultCustomPlaygroundQuickLookable",
+ "printedName": "__DefaultCustomPlaygroundQuickLookable",
+ "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
+ "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "LayoutArea",
+ "printedName": "LayoutArea",
+ "usr": "s:9AppCoreUI10LayoutAreaP",
+ "mangledName": "$s9AppCoreUI10LayoutAreaP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ApiErrorCode",
+ "printedName": "ApiErrorCode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "internalServerError",
+ "printedName": "internalServerError",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ApiErrorCode.Type) -> LinkKit.ApiErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.VerificationStatus?",
- "children": [
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ },
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Metatype",
+ "printedName": "LinkKit.ApiErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ }
+ ]
}
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit7AccountV2id4name4mask7subtype18verificationStatusACSS_S2SSgAA0C7SubtypeOAA012VerificationI0OSgtcfc",
- "mangledName": "$s7LinkKit7AccountV2id4name4mask7subtype18verificationStatusACSS_S2SSgAA0C7SubtypeOAA012VerificationI0OSgtcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD0yA2CmF",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD0yA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Var",
+ "name": "plannedMaintenance",
+ "printedName": "plannedMaintenance",
"children": [
{
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ApiErrorCode.Type) -> LinkKit.ApiErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ApiErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit7AccountV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit7AccountV4fromACs7Decoder_p_tKcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit12ApiErrorCodeO18plannedMaintenanceyA2CmF",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO18plannedMaintenanceyA2CmF",
"moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ApiErrorCode.Type) -> (Swift.String) -> LinkKit.ApiErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ApiErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ApiErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7AccountV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit7AccountV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit12ApiErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7AccountV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit7AccountV2eeoiySbAC_ACtFZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit12ApiErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO6stringACSS_tcfc",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAccount",
- "printedName": "LinkKit.PLKAccount",
- "usr": "c:objc(cs)PLKAccount"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV6toObjCSo10PLKAccountCvp",
- "mangledName": "$s7LinkKit7AccountV6toObjCSo10PLKAccountCvp",
+ "usr": "s:7LinkKit12ApiErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
"accessors": [
{
"kind": "Accessor",
@@ -20938,79 +19959,42 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAccount",
- "printedName": "LinkKit.PLKAccount",
- "usr": "c:objc(cs)PLKAccount"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV6toObjCSo10PLKAccountCvg",
- "mangledName": "$s7LinkKit7AccountV6toObjCSo10PLKAccountCvg",
+ "usr": "s:7LinkKit12ApiErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
- "isFromExtension": true,
"accessorKind": "get"
}
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit7AccountV",
- "mangledName": "$s7LinkKit7AccountV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SuccessMetadata",
- "printedName": "SuccessMetadata",
- "children": [
{
"kind": "Var",
- "name": "institution",
- "printedName": "institution",
+ "name": "internalServerErrorString",
+ "printedName": "internalServerErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvp",
+ "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD6StringSSvpZ",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -21020,92 +20004,99 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvg",
+ "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD6StringSSvgZ",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "plannedMaintenanceString",
+ "printedName": "plannedMaintenanceString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvpZ",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvs",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvs",
+ "usr": "s:7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvgZ",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvM",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "accounts",
- "printedName": "accounts",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Account]",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKApiErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
+ "name": "PLKApiErrorCode",
+ "printedName": "LinkKit.PLKApiErrorCode",
+ "usr": "c:@E@PLKApiErrorCode"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvp",
+ "usr": "s:7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvp",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -21114,99 +20105,151 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Account]",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKApiErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
+ "name": "PLKApiErrorCode",
+ "printedName": "LinkKit.PLKApiErrorCode",
+ "usr": "c:@E@PLKApiErrorCode"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvg",
+ "usr": "s:7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvg",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvg",
"moduleName": "LinkKit",
- "implicit": true,
+ "isFromExtension": true,
"accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Account]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvs",
- "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvM",
- "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit12ApiErrorCodeO",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ComponentPaneRenderable",
+ "printedName": "ComponentPaneRenderable",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "renderComponentPane",
+ "printedName": "renderComponentPane()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit23ComponentPaneRenderableP06rendercD0AA0cD9ViewModelOyF",
+ "mangledName": "$s7LinkKit23ComponentPaneRenderableP06rendercD0AA0cD9ViewModelOyF",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.ComponentPaneRenderable>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit23ComponentPaneRenderableP",
+ "mangledName": "$s7LinkKit23ComponentPaneRenderableP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PaneFactory",
+ "printedName": "PaneFactory",
+ "children": [
{
"kind": "Var",
- "name": "linkSessionID",
- "printedName": "linkSessionID",
+ "name": "log",
+ "printedName": "log",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvp",
+ "usr": "s:7LinkKit11PaneFactoryV3log3LogAEVvp",
+ "mangledName": "$s7LinkKit11PaneFactoryV3log3LogAEVvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasStorage",
"AccessControl",
"RawDocComment"
],
+ "fixedbinaryorder": 0,
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -21216,541 +20259,214 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvg",
+ "usr": "s:7LinkKit11PaneFactoryV3log3LogAEVvg",
+ "mangledName": "$s7LinkKit11PaneFactoryV3log3LogAEVvg",
"moduleName": "LinkKit",
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "paneViewController",
+ "printedName": "paneViewController(with:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvs",
- "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvM",
- "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "PaneViewModel",
+ "printedName": "Workflow.PaneViewModel",
+ "usr": "s:8Workflow13PaneViewModelO"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit11PaneFactoryV18paneViewController4withSo06UIViewG0C8Workflow0cF5ModelO_tF",
+ "mangledName": "$s7LinkKit11PaneFactoryV18paneViewController4withSo06UIViewG0C8Workflow0cF5ModelO_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "metadataJSON",
- "printedName": "metadataJSON",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(log:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "PaneFactory",
+ "printedName": "LinkKit.PaneFactory",
+ "usr": "s:7LinkKit11PaneFactoryV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit11PaneFactoryV3logAC3LogAEV_tcfc",
+ "mangledName": "$s7LinkKit11PaneFactoryV3logAC3LogAEV_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit11PaneFactoryV",
+ "mangledName": "$s7LinkKit11PaneFactoryV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ExitStatus",
+ "printedName": "ExitStatus",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "requiresQuestions",
+ "printedName": "requiresQuestions",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit10ExitStatusO17requiresQuestionsyA2CmF",
+ "mangledName": "$s7LinkKit10ExitStatusO17requiresQuestionsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "requiresSelections",
+ "printedName": "requiresSelections",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitStatus.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit10ExitStatusO18requiresSelectionsyA2CmF",
+ "mangledName": "$s7LinkKit10ExitStatusO18requiresSelectionsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "requiresCode",
+ "printedName": "requiresCode",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitStatus.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvs",
- "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvM",
- "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(institution:accounts:linkSessionID:metadataJSON:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Account]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit15SuccessMetadataV11institution8accounts13linkSessionID12metadataJSONAcA11InstitutionV_SayAA7AccountVGS2SSgtcfc",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institution8accounts13linkSessionID12metadataJSONAcA11InstitutionV_SayAA7AccountVGS2SSgtcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit15SuccessMetadataV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit15SuccessMetadataV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SuccessMetadataV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit15SuccessMetadataV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "from",
- "printedName": "from(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Metadata",
- "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult.Metadata",
- "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV8MetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SuccessMetadataV4fromyAC13WorkflowProto0a1_F21_Primitives_SDKResultV0D0V_SSSgtFZ",
- "mangledName": "$s7LinkKit15SuccessMetadataV4fromyAC13WorkflowProto0a1_F21_Primitives_SDKResultV0D0V_SSSgtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SuccessMetadataV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit15SuccessMetadataV2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKSuccessMetadata",
- "printedName": "LinkKit.PLKSuccessMetadata",
- "usr": "c:objc(cs)PLKSuccessMetadata"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKSuccessMetadata",
- "printedName": "LinkKit.PLKSuccessMetadata",
- "usr": "c:objc(cs)PLKSuccessMetadata"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit15SuccessMetadataV",
- "mangledName": "$s7LinkKit15SuccessMetadataV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ExitStatus",
- "printedName": "ExitStatus",
- "children": [
- {
- "kind": "Var",
- "name": "requiresQuestions",
- "printedName": "requiresQuestions",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit10ExitStatusO17requiresQuestionsyA2CmF",
- "mangledName": "$s7LinkKit10ExitStatusO17requiresQuestionsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "requiresSelections",
- "printedName": "requiresSelections",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit10ExitStatusO18requiresSelectionsyA2CmF",
- "mangledName": "$s7LinkKit10ExitStatusO18requiresSelectionsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "requiresCode",
- "printedName": "requiresCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ]
+ ]
}
]
}
@@ -22301,28 +21017,44 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "ExitError",
- "printedName": "ExitError",
+ "name": "EventMetadata",
+ "printedName": "EventMetadata",
"children": [
{
"kind": "Var",
- "name": "errorCode",
- "printedName": "errorCode",
+ "name": "accountNumberMask",
+ "printedName": "accountNumberMask",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovp",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovp",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -22336,14 +21068,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovg",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovg",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22360,14 +21100,22 @@
},
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovs",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovs",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -22384,8 +21132,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0OvM",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0OvM",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -22394,21 +21142,30 @@
},
{
"kind": "Var",
- "name": "errorMessage",
- "printedName": "errorMessage",
+ "name": "errorCode",
+ "printedName": "errorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvp",
- "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvp",
+ "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -22422,14 +21179,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvg",
- "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvg",
+ "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22446,14 +21211,22 @@
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvs",
- "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvs",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -22470,8 +21243,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvM",
- "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvM",
+ "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -22480,8 +21253,8 @@
},
{
"kind": "Var",
- "name": "displayMessage",
- "printedName": "displayMessage",
+ "name": "errorMessage",
+ "printedName": "errorMessage",
"children": [
{
"kind": "TypeNominal",
@@ -22499,8 +21272,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvp",
- "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -22531,8 +21304,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvg",
- "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22563,8 +21336,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvs",
- "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -22581,8 +21354,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvM",
- "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -22591,32 +21364,33 @@
},
{
"kind": "Var",
- "name": "errorJSON",
- "printedName": "errorJSON",
+ "name": "exitStatus",
+ "printedName": "exitStatus",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.ExitStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvp",
- "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"hasStorage": true,
"accessors": [
@@ -22628,21 +21402,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.ExitStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvg",
- "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22660,21 +21434,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.ExitStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvs",
- "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -22691,8 +21465,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvM",
- "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -22700,28 +21474,10 @@
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(errorCode:errorMessage:displayMessage:errorJSON:)",
+ "kind": "Var",
+ "name": "institutionID",
+ "printedName": "institutionID",
"children": [
- {
- "kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
{
"kind": "TypeNominal",
"name": "Optional",
@@ -22734,223 +21490,126 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
"usr": "s:Sq"
- },
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9ExitErrorV9errorCode0E7Message07displayG00E4JSONAcA0cdF0O_S2SSgAJtcfc",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCode0E7Message07displayG00E4JSONAcA0cdF0O_S2SSgAJtcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9ExitErrorV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit9ExitErrorV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ExitErrorV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit9ExitErrorV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
- {
- "kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ExitErrorV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit9ExitErrorV2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV6toObjCSo7NSErrorCvp",
- "mangledName": "$s7LinkKit9ExitErrorV6toObjCSo7NSErrorCvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV6toObjCSo7NSErrorCvg",
- "mangledName": "$s7LinkKit9ExitErrorV6toObjCSo7NSErrorCvg",
+ "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvM",
"moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ "implicit": true,
+ "accessorKind": "_modify"
}
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit9ExitErrorV",
- "mangledName": "$s7LinkKit9ExitErrorV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Institution",
- "printedName": "Institution",
- "children": [
{
"kind": "Var",
- "name": "id",
- "printedName": "id",
+ "name": "institutionName",
+ "printedName": "institutionName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11InstitutionV2idSSvp",
- "mangledName": "$s7LinkKit11InstitutionV2idSSvp",
+ "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -22964,14 +21623,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV2idSSvg",
- "mangledName": "$s7LinkKit11InstitutionV2idSSvg",
+ "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22988,14 +21655,22 @@
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV2idSSvs",
- "mangledName": "$s7LinkKit11InstitutionV2idSSvs",
+ "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23012,8 +21687,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV2idSSvM",
- "mangledName": "$s7LinkKit11InstitutionV2idSSvM",
+ "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23022,21 +21697,30 @@
},
{
"kind": "Var",
- "name": "name",
- "printedName": "name",
+ "name": "institutionSearchQuery",
+ "printedName": "institutionSearchQuery",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11InstitutionV4nameSSvp",
- "mangledName": "$s7LinkKit11InstitutionV4nameSSvp",
+ "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -23050,14 +21734,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV4nameSSvg",
- "mangledName": "$s7LinkKit11InstitutionV4nameSSvg",
+ "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23074,14 +21766,22 @@
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV4nameSSvs",
- "mangledName": "$s7LinkKit11InstitutionV4nameSSvs",
+ "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23098,8 +21798,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV4nameSSvM",
- "mangledName": "$s7LinkKit11InstitutionV4nameSSvM",
+ "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23107,136 +21807,36 @@
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(id:name:)",
+ "kind": "Var",
+ "name": "isUpdateMode",
+ "printedName": "isUpdateMode",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit11InstitutionV2id4nameACSS_SStcfc",
- "mangledName": "$s7LinkKit11InstitutionV2id4nameACSS_SStcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit11InstitutionV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit11InstitutionV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11InstitutionV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit11InstitutionV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- },
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11InstitutionV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit11InstitutionV2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInstitution",
- "printedName": "LinkKit.PLKInstitution",
- "usr": "c:objc(cs)PLKInstitution"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvp",
- "mangledName": "$s7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvp",
+ "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -23245,81 +21845,101 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKInstitution",
- "printedName": "LinkKit.PLKInstitution",
- "usr": "c:objc(cs)PLKInstitution"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvg",
- "mangledName": "$s7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvg",
+ "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvg",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "implicit": true,
"accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit11InstitutionV",
- "mangledName": "$s7LinkKit11InstitutionV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ExitMetadata",
- "printedName": "ExitMetadata",
- "children": [
{
"kind": "Var",
- "name": "status",
- "printedName": "status",
+ "name": "matchReason",
+ "printedName": "matchReason",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvp",
+ "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23337,21 +21957,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvg",
+ "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23369,21 +21989,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvs",
+ "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23400,8 +22020,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvM",
+ "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23410,27 +22030,113 @@
},
{
"kind": "Var",
- "name": "institution",
- "printedName": "institution",
+ "name": "linkSessionID",
+ "printedName": "linkSessionID",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvp",
+ "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvg",
+ "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvs",
+ "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvM",
+ "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mfaType",
+ "printedName": "mfaType",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.Institution?",
+ "printedName": "LinkKit.MFAType?",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvp",
+ "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23448,21 +22154,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.Institution?",
+ "printedName": "LinkKit.MFAType?",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvg",
+ "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23480,21 +22186,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.Institution?",
+ "printedName": "LinkKit.MFAType?",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvs",
+ "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23511,8 +22217,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvM",
+ "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23521,8 +22227,8 @@
},
{
"kind": "Var",
- "name": "linkSessionID",
- "printedName": "linkSessionID",
+ "name": "requestID",
+ "printedName": "requestID",
"children": [
{
"kind": "TypeNominal",
@@ -23540,8 +22246,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23572,8 +22278,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23604,8 +22310,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23622,8 +22328,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23632,8 +22338,8 @@
},
{
"kind": "Var",
- "name": "requestID",
- "printedName": "requestID",
+ "name": "routingNumber",
+ "printedName": "routingNumber",
"children": [
{
"kind": "TypeNominal",
@@ -23651,8 +22357,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23683,8 +22389,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23715,8 +22421,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23733,8 +22439,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23743,8 +22449,8 @@
},
{
"kind": "Var",
- "name": "metadataJSON",
- "printedName": "metadataJSON",
+ "name": "selection",
+ "printedName": "selection",
"children": [
{
"kind": "TypeNominal",
@@ -23762,8 +22468,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23794,8 +22500,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23826,8 +22532,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23844,8 +22550,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23853,41 +22559,349 @@
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(status:institution:linkSessionID:requestID:metadataJSON:)",
+ "kind": "Var",
+ "name": "timestamp",
+ "printedName": "timestamp",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
- },
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvp",
+ "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvg",
+ "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.Institution?",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvs",
+ "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvM",
+ "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "viewName",
+ "printedName": "viewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ViewName?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ViewName?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ViewName?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "metadataJSON",
+ "printedName": "metadataJSON",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(accountNumberMask:errorCode:errorMessage:exitStatus:institutionID:institutionName:institutionSearchQuery:isUpdateMode:matchReason:linkSessionID:mfaType:requestID:routingNumber:selection:timestamp:viewName:metadataJSON:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
],
"hasDefaultArg": true,
@@ -23908,6 +22922,21 @@
"hasDefaultArg": true,
"usr": "s:Sq"
},
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
"name": "Optional",
@@ -23937,30 +22966,158 @@
],
"hasDefaultArg": true,
"usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit12ExitMetadataV6status11institution13linkSessionID07requestI012metadataJSONAcA0C6StatusOSg_AA11InstitutionVSgSSSgA2Otcfc",
- "mangledName": "$s7LinkKit12ExitMetadataV6status11institution13linkSessionID07requestI012metadataJSONAcA0C6StatusOSg_AA11InstitutionVSgSSSgA2Otcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
+ },
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.MFAType?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ViewName?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit12ExitMetadataVACycfc",
- "mangledName": "$s7LinkKit12ExitMetadataVACycfc",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMask9errorCode0H7Message10exitStatus13institutionID0M4Name0M11SearchQuery12isUpdateMode11matchReason011linkSessionN07mfaType07requestN007routingF09selection9timestamp04viewO012metadataJSONACSSSg_AA09ExitErrorI0OSgAuA04ExitL0OSgA5USSAA7MFATypeOSgA3U10Foundation4DateVAA04ViewO0OSgAUtcfc",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMask9errorCode0H7Message10exitStatus13institutionID0M4Name0M11SearchQuery12isUpdateMode11matchReason011linkSessionN07mfaType07requestN007routingF09selection9timestamp04viewO012metadataJSONACSSSg_AA09ExitErrorI0OSgAuA04ExitL0OSgA5USSAA7MFATypeOSgA3U10Foundation4DateVAA04ViewO0OSgAUtcfc",
"moduleName": "LinkKit",
"implicit": true,
"init_kind": "Designated"
@@ -23972,9 +23129,9 @@
"children": [
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
},
{
"kind": "TypeNominal",
@@ -23984,8 +23141,8 @@
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit12ExitMetadataV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit12ExitMetadataV4fromACs7Decoder_p_tKcfc",
+ "usr": "s:7LinkKit13EventMetadataV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit13EventMetadataV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
"implicit": true,
"throwing": true,
@@ -24009,8 +23166,8 @@
}
],
"declKind": "Func",
- "usr": "s:7LinkKit12ExitMetadataV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit12ExitMetadataV6encode2toys7Encoder_p_tKF",
+ "usr": "s:7LinkKit13EventMetadataV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit13EventMetadataV6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"implicit": true,
"throwing": true,
@@ -24029,21 +23186,21 @@
},
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
},
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit12ExitMetadataV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit12ExitMetadataV2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
+ "usr": "s:7LinkKit13EventMetadataV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit13EventMetadataV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
"static": true,
"isFromExtension": true,
"funcSelfKind": "NonMutating"
@@ -24055,14 +23212,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKExitMetadata",
- "printedName": "LinkKit.PLKExitMetadata",
- "usr": "c:objc(cs)PLKExitMetadata"
+ "name": "PLKEventMetadata",
+ "printedName": "LinkKit.PLKEventMetadata",
+ "usr": "c:objc(cs)PLKEventMetadata"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvp",
- "mangledName": "$s7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvp",
+ "usr": "s:7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvp",
+ "mangledName": "$s7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvp",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessors": [
@@ -24073,14 +23230,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKExitMetadata",
- "printedName": "LinkKit.PLKExitMetadata",
- "usr": "c:objc(cs)PLKExitMetadata"
+ "name": "PLKEventMetadata",
+ "printedName": "LinkKit.PLKEventMetadata",
+ "usr": "c:objc(cs)PLKEventMetadata"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvg",
- "mangledName": "$s7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvg",
+ "usr": "s:7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvg",
+ "mangledName": "$s7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
@@ -24089,8 +23246,8 @@
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit12ExitMetadataV",
- "mangledName": "$s7LinkKit12ExitMetadataV",
+ "usr": "s:7LinkKit13EventMetadataV",
+ "mangledName": "$s7LinkKit13EventMetadataV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
@@ -24120,237 +23277,335 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "Anomalies",
+ "printedName": "Anomalies",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "EventName",
- "printedName": "EventName",
+ "name": "Plaid",
+ "printedName": "Plaid",
"children": [
{
- "kind": "Var",
- "name": "bankIncomeInsightsCompleted",
- "printedName": "bankIncomeInsightsCompleted",
+ "kind": "TypeDecl",
+ "name": "CreateError",
+ "printedName": "CreateError",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "configurationError",
+ "printedName": "configurationError",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.Plaid.CreateError.Type) -> (LinkKit.ConfigurationError) -> LinkKit.Plaid.CreateError",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError) -> LinkKit.Plaid.CreateError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CreateError",
+ "printedName": "LinkKit.Plaid.CreateError",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Metatype",
+ "printedName": "LinkKit.Plaid.CreateError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CreateError",
+ "printedName": "LinkKit.Plaid.CreateError",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO"
+ }
+ ]
}
]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO013configurationE0yAeA013ConfigurationE0OcAEmF",
+ "mangledName": "$s7LinkKit5PlaidV11CreateErrorO013configurationE0yAeA013ConfigurationE0OcAEmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO27bankIncomeInsightsCompletedyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO27bankIncomeInsightsCompletedyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "closeOAuth",
- "printedName": "closeOAuth",
- "children": [
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvp",
+ "mangledName": "$s7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvg",
+ "mangledName": "$s7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO10closeOAuthyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO10closeOAuthyA2CmF",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO",
+ "mangledName": "$s7LinkKit5PlaidV11CreateErrorO",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
]
},
{
- "kind": "Var",
- "name": "error",
- "printedName": "error",
+ "kind": "Function",
+ "name": "create",
+ "printedName": "create(_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Result",
+ "printedName": "Swift.Result",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "CreateError",
+ "printedName": "LinkKit.Plaid.CreateError",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO"
}
- ]
+ ],
+ "usr": "s:s6ResultO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO5erroryA2CmF",
- "mangledName": "$s7LinkKit9EventNameO5erroryA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A18TokenConfigurationVFZ",
+ "mangledName": "$s7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A18TokenConfigurationVFZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "exit",
- "printedName": "exit",
+ "name": "version",
+ "printedName": "version",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO4exityA2CmF",
- "mangledName": "$s7LinkKit9EventNameO4exityA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit5PlaidV7versionSSvpZ",
+ "mangledName": "$s7LinkKit5PlaidV7versionSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "failOAuth",
- "printedName": "failOAuth",
- "children": [
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit5PlaidV7versionSSvgZ",
+ "mangledName": "$s7LinkKit5PlaidV7versionSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO9failOAuthyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO9failOAuthyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Plaid",
+ "printedName": "LinkKit.Plaid",
+ "usr": "s:7LinkKit5PlaidV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit5PlaidVACycfc",
+ "mangledName": "$s7LinkKit5PlaidVACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit5PlaidV",
+ "mangledName": "$s7LinkKit5PlaidV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "AuthErrorCode",
+ "printedName": "AuthErrorCode",
+ "children": [
{
"kind": "Var",
- "name": "handoff",
- "printedName": "handoff",
+ "name": "productNotReady",
+ "printedName": "productNotReady",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.AuthErrorCode.Type) -> LinkKit.AuthErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.AuthErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
}
]
}
@@ -24358,8 +23613,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO7handoffyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO7handoffyA2CmF",
+ "usr": "s:7LinkKit13AuthErrorCodeO15productNotReadyyA2CmF",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO15productNotReadyyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -24367,30 +23622,30 @@
},
{
"kind": "Var",
- "name": "identityVerificationStartStep",
- "printedName": "identityVerificationStartStep",
+ "name": "verificationExpired",
+ "printedName": "verificationExpired",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.AuthErrorCode.Type) -> LinkKit.AuthErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.AuthErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
}
]
}
@@ -24398,8 +23653,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO29identityVerificationStartStepyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO29identityVerificationStartStepyA2CmF",
+ "usr": "s:7LinkKit13AuthErrorCodeO19verificationExpiredyA2CmF",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO19verificationExpiredyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -24407,30 +23662,43 @@
},
{
"kind": "Var",
- "name": "identityVerificationPassStep",
- "printedName": "identityVerificationPassStep",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.AuthErrorCode.Type) -> (Swift.String) -> LinkKit.AuthErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.AuthErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.AuthErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
}
]
}
@@ -24438,1159 +23706,1464 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO28identityVerificationPassStepyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO28identityVerificationPassStepyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "usr": "s:7LinkKit13AuthErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
- "kind": "Var",
- "name": "identityVerificationFailStep",
- "printedName": "identityVerificationFailStep",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO28identityVerificationFailStepyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO28identityVerificationFailStepyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13AuthErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO6stringACSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "identityVerificationPendingReviewStep",
- "printedName": "identityVerificationPendingReviewStep",
+ "name": "description",
+ "printedName": "description",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO37identityVerificationPendingReviewStepyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO37identityVerificationPendingReviewStepyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13AuthErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identityVerificationCreateSession",
- "printedName": "identityVerificationCreateSession",
- "children": [
+ "AccessControl"
+ ],
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13AuthErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO33identityVerificationCreateSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO33identityVerificationCreateSessionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "identityVerificationResumeSession",
- "printedName": "identityVerificationResumeSession",
+ "name": "productNotReadyString",
+ "printedName": "productNotReadyString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO33identityVerificationResumeSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO33identityVerificationResumeSessionyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13AuthErrorCodeO21productNotReadyStringSSvpZ",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO21productNotReadyStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identityVerificationPassSession",
- "printedName": "identityVerificationPassSession",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13AuthErrorCodeO21productNotReadyStringSSvgZ",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO21productNotReadyStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO31identityVerificationPassSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO31identityVerificationPassSessionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "identityVerificationFailSession",
- "printedName": "identityVerificationFailSession",
+ "name": "verificationExpiredString",
+ "printedName": "verificationExpiredString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO31identityVerificationFailSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO31identityVerificationFailSessionyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvpZ",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identityVerificationPendingReviewSession",
- "printedName": "identityVerificationPendingReviewSession",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvgZ",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO40identityVerificationPendingReviewSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO40identityVerificationPendingReviewSessionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "identityVerificationOpenUI",
- "printedName": "identityVerificationOpenUI",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKAuthErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "PLKAuthErrorCode",
+ "printedName": "LinkKit.PLKAuthErrorCode",
+ "usr": "c:@E@PLKAuthErrorCode"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO26identityVerificationOpenUIyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO26identityVerificationOpenUIyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvp",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identityVerificationResumeUI",
- "printedName": "identityVerificationResumeUI",
- "children": [
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKAuthErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "PLKAuthErrorCode",
+ "printedName": "LinkKit.PLKAuthErrorCode",
+ "usr": "c:@E@PLKAuthErrorCode"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvg",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO28identityVerificationResumeUIyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO28identityVerificationResumeUIyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit13AuthErrorCodeO",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "GithubRelease",
+ "printedName": "GithubRelease",
+ "children": [
{
"kind": "Var",
- "name": "identityVerificationCloseUI",
- "printedName": "identityVerificationCloseUI",
+ "name": "htmlURL",
+ "printedName": "htmlURL",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO27identityVerificationCloseUIyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO27identityVerificationCloseUIyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV7htmlURLSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV7htmlURLSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "matchedSelectInstitution",
- "printedName": "matchedSelectInstitution",
- "children": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV7htmlURLSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV7htmlURLSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO24matchedSelectInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO24matchedSelectInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "matchedSelectVerifyMethod",
- "printedName": "matchedSelectVerifyMethod",
+ "name": "tagName",
+ "printedName": "tagName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV7tagNameSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV7tagNameSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV7tagNameSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV7tagNameSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO25matchedSelectVerifyMethodyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO25matchedSelectVerifyMethodyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "open",
- "printedName": "open",
+ "name": "name",
+ "printedName": "name",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV4nameSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV4nameSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 2,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV4nameSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV4nameSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO4openyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO4openyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "openMyPlaid",
- "printedName": "openMyPlaid",
+ "name": "draft",
+ "printedName": "draft",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV5draftSbvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV5draftSbvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 3,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV5draftSbvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV5draftSbvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO11openMyPlaidyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO11openMyPlaidyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "openOAuth",
- "printedName": "openOAuth",
+ "name": "prerelease",
+ "printedName": "prerelease",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV10prereleaseSbvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV10prereleaseSbvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 4,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV10prereleaseSbvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV10prereleaseSbvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO9openOAuthyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO9openOAuthyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "searchInstitution",
- "printedName": "searchInstitution",
+ "name": "publishedAt",
+ "printedName": "publishedAt",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 5,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO17searchInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO17searchInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "selectDegradedInstitution",
- "printedName": "selectDegradedInstitution",
+ "name": "body",
+ "printedName": "body",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV4bodySSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV4bodySSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 6,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV4bodySSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV4bodySSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO25selectDegradedInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO25selectDegradedInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "selectFilteredInstitution",
- "printedName": "selectFilteredInstitution",
+ "name": "semanticVersion",
+ "printedName": "semanticVersion",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.SemanticVersion?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvp",
+ "moduleName": "LinkKit",
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "name": "Optional",
+ "printedName": "LinkKit.SemanticVersion?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO25selectFilteredInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO25selectFilteredInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "selectDownInstitution",
- "printedName": "selectDownInstitution",
+ "kind": "TypeDecl",
+ "name": "CodingKeys",
+ "printedName": "CodingKeys",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "htmlURL",
+ "printedName": "htmlURL",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO21selectDownInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO21selectDownInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectInstitution",
- "printedName": "selectInstitution",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO7htmlURLyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO7htmlURLyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "tagName",
+ "printedName": "tagName",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO17selectInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO17selectInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectBrand",
- "printedName": "selectBrand",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO7tagNameyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO7tagNameyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "name",
+ "printedName": "name",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO11selectBrandyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO11selectBrandyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectAuthType",
- "printedName": "selectAuthType",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO4nameyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO4nameyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 2
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "draft",
+ "printedName": "draft",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO14selectAuthTypeyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO14selectAuthTypeyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitAccountNumber",
- "printedName": "submitAccountNumber",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO5draftyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO5draftyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 3
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "prerelease",
+ "printedName": "prerelease",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO19submitAccountNumberyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO19submitAccountNumberyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitDocuments",
- "printedName": "submitDocuments",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO10prereleaseyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO10prereleaseyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 4
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "publishedAt",
+ "printedName": "publishedAt",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO15submitDocumentsyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO15submitDocumentsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitDocumentsSuccess",
- "printedName": "submitDocumentsSuccess",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11publishedAtyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11publishedAtyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 5
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "body",
+ "printedName": "body",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO22submitDocumentsSuccessyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO22submitDocumentsSuccessyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitDocumentsError",
- "printedName": "submitDocumentsError",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO4bodyyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO4bodyyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 6
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "name": "Optional",
+ "printedName": "LinkKit.GithubRelease.CodingKeys?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO20submitDocumentsErroryA2CmF",
- "mangledName": "$s7LinkKit9EventNameO20submitDocumentsErroryA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitRoutingNumber",
- "printedName": "submitRoutingNumber",
- "children": [
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueAESgSS_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "rawValue",
+ "printedName": "rawValue",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO19submitRoutingNumberyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO19submitRoutingNumberyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitCredentials",
- "printedName": "submitCredentials",
- "children": [
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "stringValue",
+ "printedName": "stringValue",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(stringValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.GithubRelease.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueAESgSS_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "intValue",
+ "printedName": "intValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
- ]
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(intValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.GithubRelease.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueAESgSi_tcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueAESgSi_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO17submitCredentialsyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO17submitCredentialsyA2CmF",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
+ "enumRawTypeName": "String",
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CodingKey",
+ "printedName": "CodingKey",
+ "usr": "s:s9CodingKeyP",
+ "mangledName": "$ss9CodingKeyP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(htmlURL:tagName:name:draft:prerelease:publishedAt:body:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GithubRelease",
+ "printedName": "LinkKit.GithubRelease",
+ "usr": "s:7LinkKit13GithubReleaseV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV7htmlURL7tagName4name5draft10prerelease11publishedAt4bodyACSS_S2SS2b10Foundation4DateVSStcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV7htmlURL7tagName4name5draft10prerelease11publishedAt4bodyACSS_S2SS2b10Foundation4DateVSStcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GithubRelease",
+ "printedName": "LinkKit.GithubRelease",
+ "usr": "s:7LinkKit13GithubReleaseV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit13GithubReleaseV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit13GithubReleaseV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit13GithubReleaseV",
+ "mangledName": "$s7LinkKit13GithubReleaseV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Environment",
+ "printedName": "Environment",
+ "children": [
{
"kind": "Var",
- "name": "submitMFA",
- "printedName": "submitMFA",
+ "name": "production",
+ "printedName": "production",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.Environment.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
]
}
@@ -25598,8 +25171,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO9submitMFAyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO9submitMFAyA2CmF",
+ "usr": "s:7LinkKit11EnvironmentO10productionyA2CmF",
+ "mangledName": "$s7LinkKit11EnvironmentO10productionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -25607,30 +25180,30 @@
},
{
"kind": "Var",
- "name": "transitionView",
- "printedName": "transitionView",
+ "name": "development",
+ "printedName": "development",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.Environment.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
]
}
@@ -25638,8 +25211,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO14transitionViewyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO14transitionViewyA2CmF",
+ "usr": "s:7LinkKit11EnvironmentO11developmentyA2CmF",
+ "mangledName": "$s7LinkKit11EnvironmentO11developmentyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -25647,30 +25220,30 @@
},
{
"kind": "Var",
- "name": "viewDataTypes",
- "printedName": "viewDataTypes",
+ "name": "sandbox",
+ "printedName": "sandbox",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.Environment.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
]
}
@@ -25678,8 +25251,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO13viewDataTypesyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO13viewDataTypesyA2CmF",
+ "usr": "s:7LinkKit11EnvironmentO7sandboxyA2CmF",
+ "mangledName": "$s7LinkKit11EnvironmentO7sandboxyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -25687,291 +25260,133 @@
},
{
"kind": "Var",
- "name": "submitPhone",
- "printedName": "submitPhone",
+ "name": "baseURL",
+ "printedName": "baseURL",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO11submitPhoneyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO11submitPhoneyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvp",
+ "mangledName": "$s7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "skipSubmitPhone",
- "printedName": "skipSubmitPhone",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
- }
+ "AccessControl"
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO15skipSubmitPhoneyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO15skipSubmitPhoneyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "verifyPhone",
- "printedName": "verifyPhone",
- "children": [
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvg",
+ "mangledName": "$s7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO11verifyPhoneyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO11verifyPhoneyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "connectNewInstitution",
- "printedName": "connectNewInstitution",
+ "name": "description",
+ "printedName": "description",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO21connectNewInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO21connectNewInstitutionyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit11EnvironmentO11descriptionSSvp",
+ "mangledName": "$s7LinkKit11EnvironmentO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
+ "AccessControl"
+ ],
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> (Swift.String) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit11EnvironmentO11descriptionSSvg",
+ "mangledName": "$s7LinkKit11EnvironmentO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit9EventNameO7unknownyACSScACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
"kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9EventNameO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit9EventNameO4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9EventNameO8rawValueACSS_tcfc",
- "mangledName": "$s7LinkKit9EventNameO8rawValueACSS_tcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit11EnvironmentO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit11EnvironmentO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "static": true,
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9EventNameO11descriptionSSvp",
- "mangledName": "$s7LinkKit9EventNameO11descriptionSSvp",
+ "usr": "s:7LinkKit11EnvironmentO9hashValueSivp",
+ "mangledName": "$s7LinkKit11EnvironmentO9hashValueSivp",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -25980,23 +25395,24 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9EventNameO11descriptionSSvg",
- "mangledName": "$s7LinkKit9EventNameO11descriptionSSvg",
+ "usr": "s:7LinkKit11EnvironmentO9hashValueSivg",
+ "mangledName": "$s7LinkKit11EnvironmentO9hashValueSivg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
},
{
"kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "name": "hash",
+ "printedName": "hash(into:)",
"children": [
{
"kind": "TypeNominal",
@@ -26005,69 +25421,38 @@
},
{
"kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9EventNameO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit9EventNameO6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit9EventNameO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit9EventNameO2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit11EnvironmentO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit11EnvironmentO4hash4intoys6HasherVz_tF",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
+ "implicit": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "valueForQueryString",
+ "printedName": "valueForQueryString",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKEventName",
- "printedName": "LinkKit.PLKEventName",
- "usr": "c:objc(cs)PLKEventName"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvp",
- "mangledName": "$s7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvp",
+ "usr": "s:7LinkKit11EnvironmentO19valueForQueryStringSSvp",
+ "mangledName": "$s7LinkKit11EnvironmentO19valueForQueryStringSSvp",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
"isFromExtension": true,
"accessors": [
{
@@ -26077,24 +25462,52 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKEventName",
- "printedName": "LinkKit.PLKEventName",
- "usr": "c:objc(cs)PLKEventName"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvg",
- "mangledName": "$s7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvg",
+ "usr": "s:7LinkKit11EnvironmentO19valueForQueryStringSSvg",
+ "mangledName": "$s7LinkKit11EnvironmentO19valueForQueryStringSSvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
}
]
+ },
+ {
+ "kind": "Function",
+ "name": "fuzzyMatches",
+ "printedName": "fuzzyMatches(linkToken:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit11EnvironmentO12fuzzyMatches9linkTokenSbSS_tF",
+ "mangledName": "$s7LinkKit11EnvironmentO12fuzzyMatches9linkTokenSbSS_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit9EventNameO",
- "mangledName": "$s7LinkKit9EventNameO",
+ "usr": "s:7LinkKit11EnvironmentO",
+ "mangledName": "$s7LinkKit11EnvironmentO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
@@ -26103,545 +25516,829 @@
"conformances": [
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
"kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
},
{
"kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "ViewName",
- "printedName": "ViewName",
+ "name": "ExitError",
+ "printedName": "ExitError",
"children": [
{
"kind": "Var",
- "name": "acceptTOS",
- "printedName": "acceptTOS",
+ "name": "errorCode",
+ "printedName": "errorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9acceptTOSyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9acceptTOSyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovp",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "connected",
- "printedName": "connected",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9connectedyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9connectedyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "consent",
- "printedName": "consent",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovg",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovs",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0OvM",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0OvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO7consentyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO7consentyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "credential",
- "printedName": "credential",
+ "name": "errorMessage",
+ "printedName": "errorMessage",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO10credentialyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO10credentialyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvp",
+ "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "dataTransparency",
- "printedName": "dataTransparency",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvg",
+ "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvs",
+ "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvM",
+ "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO16dataTransparencyyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO16dataTransparencyyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "dataTransparencyConsent",
- "printedName": "dataTransparencyConsent",
+ "name": "displayMessage",
+ "printedName": "displayMessage",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO23dataTransparencyConsentyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO23dataTransparencyConsentyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvp",
+ "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "documentaryVerification",
- "printedName": "documentaryVerification",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO23documentaryVerificationyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO23documentaryVerificationyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "error",
- "printedName": "error",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvg",
+ "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvs",
+ "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvM",
+ "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO5erroryA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO5erroryA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "exit",
- "printedName": "exit",
+ "name": "errorJSON",
+ "printedName": "errorJSON",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO4exityA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO4exityA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvp",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "kycCheck",
- "printedName": "kycCheck",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO8kycCheckyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO8kycCheckyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "loading",
- "printedName": "loading",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvg",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvs",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvM",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO7loadingyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO7loadingyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "matchedConsent",
- "printedName": "matchedConsent",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(errorCode:errorMessage:displayMessage:errorJSON:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO14matchedConsentyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO14matchedConsentyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9ExitErrorV9errorCode0E7Message07displayG00E4JSONAcA0cdF0O_S2SSgAJtcfc",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCode0E7Message07displayG00E4JSONAcA0cdF0O_S2SSgAJtcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9ExitErrorV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit9ExitErrorV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ExitErrorV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit9ExitErrorV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ExitErrorV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit9ExitErrorV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV6toObjCSo7NSErrorCvp",
+ "mangledName": "$s7LinkKit9ExitErrorV6toObjCSo7NSErrorCvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV6toObjCSo7NSErrorCvg",
+ "mangledName": "$s7LinkKit9ExitErrorV6toObjCSo7NSErrorCvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit9ExitErrorV",
+ "mangledName": "$s7LinkKit9ExitErrorV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkHTTPServiceUserAgentProvider",
+ "printedName": "LinkHTTPServiceUserAgentProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "userAgent",
+ "printedName": "userAgent",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvp",
+ "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvg",
+ "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent",
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LinkHTTPServiceUserAgentProvider",
+ "printedName": "LinkKit.LinkHTTPServiceUserAgentProvider",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderCACycfc",
+ "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderCACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC",
+ "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "HTTPServiceUserAgentProviding",
+ "printedName": "HTTPServiceUserAgentProviding",
+ "usr": "s:7AppCore29HTTPServiceUserAgentProvidingP",
+ "mangledName": "$s7AppCore29HTTPServiceUserAgentProvidingP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "MFAType",
+ "printedName": "MFAType",
+ "children": [
{
"kind": "Var",
- "name": "matchedCredential",
- "printedName": "matchedCredential",
+ "name": "code",
+ "printedName": "code",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "printedName": "LinkKit.MFAType.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
]
}
@@ -26649,8 +26346,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO17matchedCredentialyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO17matchedCredentialyA2CmF",
+ "usr": "s:7LinkKit7MFATypeO4codeyA2CmF",
+ "mangledName": "$s7LinkKit7MFATypeO4codeyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -26658,30 +26355,30 @@
},
{
"kind": "Var",
- "name": "matchedMFA",
- "printedName": "matchedMFA",
+ "name": "device",
+ "printedName": "device",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "printedName": "LinkKit.MFAType.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
]
}
@@ -26689,8 +26386,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO10matchedMFAyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO10matchedMFAyA2CmF",
+ "usr": "s:7LinkKit7MFATypeO6deviceyA2CmF",
+ "mangledName": "$s7LinkKit7MFATypeO6deviceyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -26698,30 +26395,30 @@
},
{
"kind": "Var",
- "name": "mfa",
- "printedName": "mfa",
+ "name": "questions",
+ "printedName": "questions",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "printedName": "LinkKit.MFAType.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
]
}
@@ -26729,8 +26426,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO3mfayA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO3mfayA2CmF",
+ "usr": "s:7LinkKit7MFATypeO9questionsyA2CmF",
+ "mangledName": "$s7LinkKit7MFATypeO9questionsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -26738,30 +26435,30 @@
},
{
"kind": "Var",
- "name": "numbers",
- "printedName": "numbers",
+ "name": "selections",
+ "printedName": "selections",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "printedName": "LinkKit.MFAType.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
]
}
@@ -26769,1069 +26466,872 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO7numbersyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO7numbersyA2CmF",
+ "usr": "s:7LinkKit7MFATypeO10selectionsyA2CmF",
+ "mangledName": "$s7LinkKit7MFATypeO10selectionsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
]
},
{
- "kind": "Var",
- "name": "numbersSelectInstitution",
- "printedName": "numbersSelectInstitution",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO24numbersSelectInstitutionyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO24numbersSelectInstitutionyA2CmF",
- "moduleName": "LinkKit"
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit7MFATypeO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit7MFATypeO4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "oauth",
- "printedName": "oauth",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.MFAType?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO5oauthyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO5oauthyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit7MFATypeO8rawValueACSgSS_tcfc",
+ "mangledName": "$s7LinkKit7MFATypeO8rawValueACSgSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "recaptcha",
- "printedName": "recaptcha",
+ "name": "description",
+ "printedName": "description",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9recaptchayA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9recaptchayA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit7MFATypeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "riskCheck",
- "printedName": "riskCheck",
- "children": [
+ "AccessControl"
+ ],
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit7MFATypeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9riskCheckyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9riskCheckyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "screening",
- "printedName": "screening",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9screeningyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9screeningyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7MFATypeO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit7MFATypeO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "selectAccount",
- "printedName": "selectAccount",
+ "name": "codeString",
+ "printedName": "codeString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO13selectAccountyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO13selectAccountyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO10codeStringSSvpZ",
+ "mangledName": "$s7LinkKit7MFATypeO10codeStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectAuthType",
- "printedName": "selectAuthType",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO10codeStringSSvgZ",
+ "mangledName": "$s7LinkKit7MFATypeO10codeStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO14selectAuthTypeyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO14selectAuthTypeyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "submitPhone",
- "printedName": "submitPhone",
+ "name": "deviceString",
+ "printedName": "deviceString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO12deviceStringSSvpZ",
+ "mangledName": "$s7LinkKit7MFATypeO12deviceStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO12deviceStringSSvgZ",
+ "mangledName": "$s7LinkKit7MFATypeO12deviceStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO11submitPhoneyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO11submitPhoneyA2CmF",
- "moduleName": "LinkKit"
+ ]
},
{
"kind": "Var",
- "name": "verifyPhone",
- "printedName": "verifyPhone",
+ "name": "questionsString",
+ "printedName": "questionsString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO15questionsStringSSvpZ",
+ "mangledName": "$s7LinkKit7MFATypeO15questionsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO15questionsStringSSvgZ",
+ "mangledName": "$s7LinkKit7MFATypeO15questionsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO11verifyPhoneyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO11verifyPhoneyA2CmF",
- "moduleName": "LinkKit"
+ ]
},
{
"kind": "Var",
- "name": "selectSavedInstitution",
- "printedName": "selectSavedInstitution",
+ "name": "selectionsString",
+ "printedName": "selectionsString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO16selectionsStringSSvpZ",
+ "mangledName": "$s7LinkKit7MFATypeO16selectionsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO16selectionsStringSSvgZ",
+ "mangledName": "$s7LinkKit7MFATypeO16selectionsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO22selectSavedInstitutionyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO22selectSavedInstitutionyA2CmF",
- "moduleName": "LinkKit"
+ ]
},
{
- "kind": "Var",
- "name": "selectSavedAccount",
- "printedName": "selectSavedAccount",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO18selectSavedAccountyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO18selectSavedAccountyA2CmF",
- "moduleName": "LinkKit"
+ "declKind": "Func",
+ "usr": "s:7LinkKit7MFATypeO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit7MFATypeO2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "selectBrand",
- "printedName": "selectBrand",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO11selectBrandyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO11selectBrandyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO9hashValueSivp",
+ "mangledName": "$s7LinkKit7MFATypeO9hashValueSivp",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectInstitution",
- "printedName": "selectInstitution",
- "children": [
+ "implicit": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO9hashValueSivg",
+ "mangledName": "$s7LinkKit7MFATypeO9hashValueSivg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO17selectInstitutionyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO17selectInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "selfieCheck",
- "printedName": "selfieCheck",
+ "kind": "Function",
+ "name": "hash",
+ "printedName": "hash(into:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO11selfieCheckyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO11selfieCheckyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7MFATypeO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit7MFATypeO4hash4intoys6HasherVz_tF",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "uploadDocuments",
- "printedName": "uploadDocuments",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "PLKMFAType",
+ "printedName": "LinkKit.PLKMFAType",
+ "usr": "c:@E@PLKMFAType"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO15uploadDocumentsyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO15uploadDocumentsyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvp",
+ "mangledName": "$s7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitDocuments",
- "printedName": "submitDocuments",
- "children": [
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "PLKMFAType",
+ "printedName": "LinkKit.PLKMFAType",
+ "usr": "c:@E@PLKMFAType"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvg",
+ "mangledName": "$s7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO15submitDocumentsyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO15submitDocumentsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit7MFATypeO",
+ "mangledName": "$s7LinkKit7MFATypeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
- "kind": "Var",
- "name": "submitDocumentsSuccess",
- "printedName": "submitDocumentsSuccess",
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "EmbeddedSearchAndSelectView",
+ "printedName": "EmbeddedSearchAndSelectView",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(viewModel:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "EmbeddedSearchAndSelectView",
+ "printedName": "LinkKit.EmbeddedSearchAndSelectView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "EmbeddedSearchViewModel",
+ "printedName": "Workflow.EmbeddedSearchViewModel",
+ "usr": "s:8Workflow23EmbeddedSearchViewModelC"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO22submitDocumentsSuccessyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO22submitDocumentsSuccessyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit27EmbeddedSearchAndSelectViewC9viewModelAC8Workflow0cdgI0C_tcfc",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC9viewModelAC8Workflow0cdgI0C_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
+ "Custom",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "submitDocumentsError",
- "printedName": "submitDocumentsError",
+ "kind": "Function",
+ "name": "collectionView",
+ "printedName": "collectionView(_:didSelectItemAt:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO20submitDocumentsErroryA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO20submitDocumentsErroryA2CmF",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didSelectItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_03didF6ItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:didSelectItemAtIndexPath:",
"declAttributes": [
- "RawDocComment"
- ]
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "verifySMS",
- "printedName": "verifySMS",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9verifySMSyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9verifySMSyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "kind": "Function",
+ "name": "collectionView",
+ "printedName": "collectionView(_:didHighlightItemAt:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> (Swift.String) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit8ViewNameO7unknownyACSScACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
},
{
"kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit8ViewNameO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit8ViewNameO4fromACs7Decoder_p_tKcfc",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didHighlightItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_18didHighlightItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:didHighlightItemAtIndexPath:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "throwing": true,
- "init_kind": "Designated"
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
+ "kind": "Function",
+ "name": "collectionView",
+ "printedName": "collectionView(_:didUnhighlightItemAt:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit8ViewNameO8rawValueACSS_tcfc",
- "mangledName": "$s7LinkKit8ViewNameO8rawValueACSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "children": [
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit8ViewNameO11descriptionSSvp",
- "mangledName": "$s7LinkKit8ViewNameO11descriptionSSvp",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didUnhighlightItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_20didUnhighlightItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:didUnhighlightItemAtIndexPath:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit8ViewNameO11descriptionSSvg",
- "mangledName": "$s7LinkKit8ViewNameO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "name": "collectionView",
+ "printedName": "collectionView(_:numberOfItemsInSection:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
},
{
"kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit8ViewNameO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit8ViewNameO6encode2toys7Encoder_p_tKF",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:numberOfItemsInSection:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_22numberOfItemsInSectionSiSo012UICollectionG0C_SitF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:numberOfItemsInSection:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "throwing": true,
+ "isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "name": "collectionView",
+ "printedName": "collectionView(_:cellForItemAt:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "UICollectionViewCell",
+ "printedName": "UIKit.UICollectionViewCell",
+ "usr": "c:objc(cs)UICollectionViewCell"
},
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
},
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit8ViewNameO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit8ViewNameO2eeoiySbAC_ACtFZ",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:cellForItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_13cellForItemAtSo012UICollectionG4CellCSo0mG0C_10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
- "static": true,
+ "objc_name": "collectionView:cellForItemAtIndexPath:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "toObjCValue",
- "printedName": "toObjCValue",
+ "kind": "Function",
+ "name": "collectionView",
+ "printedName": "collectionView(_:layout:sizeForItemAt:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKViewNameValue?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKViewNameValue",
- "printedName": "LinkKit.PLKViewNameValue",
- "usr": "c:@E@PLKViewNameValue"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvp",
- "mangledName": "$s7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
+ "name": "CGSize",
+ "printedName": "CoreFoundation.CGSize",
+ "usr": "c:@S@CGSize"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKViewNameValue?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKViewNameValue",
- "printedName": "LinkKit.PLKViewNameValue",
- "usr": "c:@E@PLKViewNameValue"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvg",
- "mangledName": "$s7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
+ "kind": "TypeNominal",
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
+ },
{
"kind": "TypeNominal",
- "name": "PLKViewName",
- "printedName": "LinkKit.PLKViewName",
- "usr": "c:objc(cs)PLKViewName"
+ "name": "UICollectionViewLayout",
+ "printedName": "UIKit.UICollectionViewLayout",
+ "usr": "c:objc(cs)UICollectionViewLayout"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvp",
- "mangledName": "$s7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvp",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:layout:sizeForItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_6layout13sizeForItemAtSo6CGSizeVSo012UICollectionG0C_So0oG6LayoutC10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:layout:sizeForItemAtIndexPath:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
"isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKViewName",
- "printedName": "LinkKit.PLKViewName",
- "usr": "c:objc(cs)PLKViewName"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvg",
- "mangledName": "$s7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit8ViewNameO",
- "mangledName": "$s7LinkKit8ViewNameO",
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC",
"moduleName": "LinkKit",
"declAttributes": [
+ "Custom",
+ "Final",
"AccessControl",
- "RawDocComment"
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIView",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "UIKit.UIView",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
],
"conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
{
"kind": "Conformance",
"name": "CustomStringConvertible",
@@ -27841,258 +27341,407 @@
},
{
"kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
},
{
"kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
},
{
"kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "__DefaultCustomPlaygroundQuickLookable",
+ "printedName": "__DefaultCustomPlaygroundQuickLookable",
+ "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
+ "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "LayoutArea",
+ "printedName": "LayoutArea",
+ "usr": "s:9AppCoreUI10LayoutAreaP",
+ "mangledName": "$s9AppCoreUI10LayoutAreaP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
{
"kind": "TypeDecl",
- "name": "EventMetadata",
- "printedName": "EventMetadata",
+ "name": "TodoPaneViewController",
+ "printedName": "TodoPaneViewController",
"children": [
{
- "kind": "Var",
- "name": "accountNumberMask",
- "printedName": "accountNumberMask",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(with:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TodoPaneViewController",
+ "printedName": "LinkKit.TodoPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TODOViewModel",
+ "printedName": "Workflow.TODOViewModel",
+ "usr": "s:8Workflow13TODOViewModelC"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit22TodoPaneViewControllerC4withAC8Workflow13TODOViewModelC_tcfc",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC4withAC8Workflow13TODOViewModelC_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Required",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.TodoPaneViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "TodoPaneViewController",
+ "printedName": "LinkKit.TodoPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
}
],
"usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvp",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC11viewDidLoadyyF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidAppear",
+ "printedName": "viewDidAppear(_:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)viewDidAppear:",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC13viewDidAppearyySbF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidAppear:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "errorCode",
- "printedName": "errorCode",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "TODOViewModel",
+ "printedName": "Workflow.TODOViewModel",
+ "usr": "s:8Workflow13TODOViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvp",
+ "usr": "s:7LinkKit22TodoPaneViewControllerC9viewModel33_F224A9F6BC8F4F117F334109F7CC7D5DLL8Workflow08TODOViewH0Cvp",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC9viewModel33_F224A9F6BC8F4F117F334109F7CC7D5DLL8Workflow08TODOViewH0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Custom",
+ "Final",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "TodoPaneViewController",
+ "printedName": "LinkKit.TodoPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ReactNativeLinkKit",
+ "printedName": "ReactNativeLinkKit",
+ "children": [
{
"kind": "Var",
- "name": "errorMessage",
- "printedName": "errorMessage",
+ "name": "sdkVersion",
+ "printedName": "sdkVersion",
"children": [
{
"kind": "TypeNominal",
@@ -28110,9 +27759,10 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvp",
+ "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvpZ",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
@@ -28142,10 +27792,14 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvg",
+ "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvgZ",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
},
{
@@ -28174,10 +27828,14 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvs",
+ "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvsZ",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvsZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "set"
},
{
@@ -28192,600 +27850,796 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvM",
+ "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvMZ",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvMZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "_modify"
}
]
},
{
- "kind": "Var",
- "name": "exitStatus",
- "printedName": "exitStatus",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ],
- "usr": "s:Sq"
+ "name": "ReactNativeLinkKit",
+ "printedName": "LinkKit.ReactNativeLinkKit",
+ "usr": "s:7LinkKit011ReactNativeaB0V"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit011ReactNativeaB0VACycfc",
+ "mangledName": "$s7LinkKit011ReactNativeaB0VACycfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit011ReactNativeaB0V",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AuthenticationServices",
+ "printedName": "AuthenticationServices",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkOOPWebViewController",
+ "printedName": "LinkOOPWebViewController",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(ViewModel:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LinkOOPWebViewController",
+ "printedName": "LinkKit.LinkOOPWebViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "OutOfProcessWebViewModel",
+ "printedName": "Workflow.OutOfProcessWebViewModel",
+ "usr": "s:8Workflow24OutOfProcessWebViewModelC"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A20OOPWebViewControllerC0D5ModelAC8Workflow015OutOfProcessWebdF0C_tcfc",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC0D5ModelAC8Workflow015OutOfProcessWebdF0C_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidAppear",
+ "printedName": "viewDidAppear(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)viewDidAppear:",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC13viewDidAppearyySbF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidAppear:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC11viewDidLoadyyF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "institutionID",
- "printedName": "institutionID",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "OutOfProcessWebViewModel",
+ "printedName": "Workflow.OutOfProcessWebViewModel",
+ "usr": "s:8Workflow24OutOfProcessWebViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvp",
+ "usr": "s:7LinkKit0A20OOPWebViewControllerC9viewModel33_511DB72405631A29D0102CBAA022739ALL8Workflow015OutOfProcessWebdG0Cvp",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC9viewModel33_511DB72405631A29D0102CBAA022739ALL8Workflow015OutOfProcessWebdG0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Custom",
+ "Final",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "institutionName",
- "printedName": "institutionName",
+ "name": "webAuthenticationSession",
+ "printedName": "webAuthenticationSession",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Any?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ProtocolComposition",
+ "printedName": "Any"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvp",
+ "usr": "s:7LinkKit0A20OOPWebViewControllerC24webAuthenticationSession33_511DB72405631A29D0102CBAA022739ALLypSgvp",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC24webAuthenticationSession33_511DB72405631A29D0102CBAA022739ALLypSgvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 1,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "LinkOOPWebViewController",
+ "printedName": "LinkKit.LinkOOPWebViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "institutionSearchQuery",
- "printedName": "institutionSearchQuery",
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(url:popupBehavior:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Link_Workflow_Nodes_Panes_WebviewFallbackIOSPopupBehavior",
+ "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_WebviewFallbackIOSPopupBehavior",
+ "usr": "s:13WorkflowProto05Link_A44_Nodes_Panes_WebviewFallbackIOSPopupBehaviorO"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A20OOPWebViewControllerC4open3url13popupBehaviory10Foundation3URLV_13WorkflowProto0a1_l36_Nodes_Panes_WebviewFallbackIOSPopupI0OtF",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC4open3url13popupBehaviory10Foundation3URLV_13WorkflowProto0a1_l36_Nodes_Panes_WebviewFallbackIOSPopupI0OtF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final",
+ "Custom"
],
- "hasStorage": true,
- "accessors": [
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "presentationAnchor",
+ "printedName": "presentationAnchor(for:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "UIWindow",
+ "printedName": "UIKit.UIWindow",
+ "usr": "c:objc(cs)UIWindow"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "ASWebAuthenticationSession",
+ "printedName": "AuthenticationServices.ASWebAuthenticationSession",
+ "usr": "c:objc(cs)ASWebAuthenticationSession"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)LinkOOPWebViewController(im)presentationAnchorForWebAuthenticationSession:",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF",
+ "moduleName": "LinkKit",
+ "objc_name": "presentationAnchorForWebAuthenticationSession:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "OutOfProcessWebViewModelDelegate",
+ "printedName": "OutOfProcessWebViewModelDelegate",
+ "usr": "s:8Workflow32OutOfProcessWebViewModelDelegateP",
+ "mangledName": "$s8Workflow32OutOfProcessWebViewModelDelegateP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InstitutionErrorCode",
+ "printedName": "InstitutionErrorCode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "institutionDown",
+ "printedName": "institutionDown",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO15institutionDownyA2CmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO15institutionDownyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "institutionNotResponding",
+ "printedName": "institutionNotResponding",
+ "children": [
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO24institutionNotRespondingyA2CmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO24institutionNotRespondingyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "isUpdateMode",
- "printedName": "isUpdateMode",
+ "name": "institutionNotAvailable",
+ "printedName": "institutionNotAvailable",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO23institutionNotAvailableyA2CmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO23institutionNotAvailableyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "institutionNoLongerSupported",
+ "printedName": "institutionNoLongerSupported",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO28institutionNoLongerSupportedyA2CmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO28institutionNoLongerSupportedyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> (Swift.String) -> LinkKit.InstitutionErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.InstitutionErrorCode",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO6stringACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "matchReason",
- "printedName": "matchReason",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -28794,82 +28648,23 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvg",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
- "implicit": true,
"accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
}
]
},
{
"kind": "Var",
- "name": "linkSessionID",
- "printedName": "linkSessionID",
+ "name": "institutionDownString",
+ "printedName": "institutionDownString",
"children": [
{
"kind": "TypeNominal",
@@ -28879,14 +28674,16 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvp",
- "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvpZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -28902,22 +28699,48 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvg",
- "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvg",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvgZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "institutionNotRespondingString",
+ "printedName": "institutionNotRespondingString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvpZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -28926,62 +28749,41 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvs",
- "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvs",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvgZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvM",
- "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "mfaType",
- "printedName": "mfaType",
+ "name": "institutionNotAvailableString",
+ "printedName": "institutionNotAvailableString",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvpZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -28991,108 +28793,47 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvs",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvgZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "requestID",
- "printedName": "requestID",
+ "name": "institutionNoLongerSupportedString",
+ "printedName": "institutionNoLongerSupportedString",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvpZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -29102,109 +28843,49 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvs",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvgZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "routingNumber",
- "printedName": "routingNumber",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.PLKInstitutionErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKInstitutionErrorCode",
+ "printedName": "LinkKit.PLKInstitutionErrorCode",
+ "usr": "c:@E@PLKInstitutionErrorCode"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvp",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -29214,394 +28895,497 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.PLKInstitutionErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKInstitutionErrorCode",
+ "printedName": "LinkKit.PLKInstitutionErrorCode",
+ "usr": "c:@E@PLKInstitutionErrorCode"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvg",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvg",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvg",
"moduleName": "LinkKit",
- "implicit": true,
+ "isFromExtension": true,
"accessorKind": "get"
- },
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "InvalidRequestErrorCode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "missingFields",
+ "printedName": "missingFields",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO13missingFieldsyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO13missingFieldsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "selection",
- "printedName": "selection",
+ "name": "unknownFields",
+ "printedName": "unknownFields",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO13unknownFieldsyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO13unknownFieldsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidField",
+ "printedName": "invalidField",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO12invalidFieldyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO12invalidFieldyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "timestamp",
- "printedName": "timestamp",
+ "name": "invalidBody",
+ "printedName": "invalidBody",
"children": [
{
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvp",
- "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO11invalidBodyyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11invalidBodyyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvg",
- "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidAddress",
+ "printedName": "invalidAddress",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvs",
- "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvM",
- "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO14invalidAddressyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14invalidAddressyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "viewName",
- "printedName": "viewName",
+ "name": "notFound",
+ "printedName": "notFound",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ViewName?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO8notFoundyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO8notFoundyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sandboxOnly",
+ "printedName": "sandboxOnly",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ViewName?",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO11sandboxOnlyyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11sandboxOnlyyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> (Swift.String) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.InvalidRequestErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ViewName?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
},
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6stringACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11descriptionSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "accessors": [
{
"kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvM",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "metadataJSON",
- "printedName": "metadataJSON",
+ "name": "missingFieldsString",
+ "printedName": "missingFieldsString",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29610,19 +29394,42 @@
"usr": "s:SS"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknownFieldsString",
+ "printedName": "unknownFieldsString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvp",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -29632,93 +29439,103 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvg",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidFieldString",
+ "printedName": "invalidFieldString",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvM",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "_modify"
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(accountNumberMask:errorCode:errorMessage:exitStatus:institutionID:institutionName:institutionSearchQuery:isUpdateMode:matchReason:linkSessionID:mfaType:requestID:routingNumber:selection:timestamp:viewName:metadataJSON:)",
+ "kind": "Var",
+ "name": "invalidBodyString",
+ "printedName": "invalidBodyString",
"children": [
{
"kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29727,28 +29544,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidAddressString",
+ "printedName": "invalidAddressString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29757,43 +29594,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "notFoundString",
+ "printedName": "notFoundString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29802,13 +29644,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sandboxOnlyString",
+ "printedName": "sandboxOnlyString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29817,335 +29694,424 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.PLKInvalidRequestErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKInvalidRequestErrorCode",
+ "printedName": "LinkKit.PLKInvalidRequestErrorCode",
+ "usr": "c:@E@PLKInvalidRequestErrorCode"
}
],
- "hasDefaultArg": true,
"usr": "s:Sq"
- },
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKInvalidRequestErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKInvalidRequestErrorCode",
+ "printedName": "LinkKit.PLKInvalidRequestErrorCode",
+ "usr": "c:@E@PLKInvalidRequestErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ItemErrorCode",
+ "printedName": "ItemErrorCode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "insufficientCredentials",
+ "printedName": "insufficientCredentials",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
}
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO23insufficientCredentialsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23insufficientCredentialsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidCredentials",
+ "printedName": "invalidCredentials",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
}
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO18invalidCredentialsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO18invalidCredentialsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidMfa",
+ "printedName": "invalidMfa",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ViewName?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
}
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMask9errorCode0H7Message10exitStatus13institutionID0M4Name0M11SearchQuery12isUpdateMode11matchReason011linkSessionN07mfaType07requestN007routingF09selection9timestamp04viewO012metadataJSONACSSSg_AA09ExitErrorI0OSgAuA04ExitL0OSgA5USSAA7MFATypeOSgA3U10Foundation4DateVAA04ViewO0OSgAUtcfc",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMask9errorCode0H7Message10exitStatus13institutionID0M4Name0M11SearchQuery12isUpdateMode11matchReason011linkSessionN07mfaType07requestN007routingF09selection9timestamp04viewO012metadataJSONACSSSg_AA09ExitErrorI0OSgAuA04ExitL0OSgA5USSAA7MFATypeOSgA3U10Foundation4DateVAA04ViewO0OSgAUtcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO10invalidMfayA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO10invalidMfayA2CmF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Var",
+ "name": "invalidSendMethod",
+ "printedName": "invalidSendMethod",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13EventMetadataV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit13EventMetadataV4fromACs7Decoder_p_tKcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO17invalidSendMethodyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO17invalidSendMethodyA2CmF",
"moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "kind": "Var",
+ "name": "invalidUpdatedUsername",
+ "printedName": "invalidUpdatedUsername",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit13EventMetadataV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit13EventMetadataV6encode2toys7Encoder_p_tKF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO22invalidUpdatedUsernameyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO22invalidUpdatedUsernameyA2CmF",
"moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "kind": "Var",
+ "name": "itemLocked",
+ "printedName": "itemLocked",
"children": [
{
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit13EventMetadataV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit13EventMetadataV2eeoiySbAC_ACtFZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO10itemLockedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO10itemLockedyA2CmF",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "itemLoginRequired",
+ "printedName": "itemLoginRequired",
"children": [
{
- "kind": "TypeNominal",
- "name": "PLKEventMetadata",
- "printedName": "LinkKit.PLKEventMetadata",
- "usr": "c:objc(cs)PLKEventMetadata"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvp",
- "mangledName": "$s7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKEventMetadata",
- "printedName": "LinkKit.PLKEventMetadata",
- "usr": "c:objc(cs)PLKEventMetadata"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvg",
- "mangledName": "$s7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO17itemLoginRequiredyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO17itemLoginRequiredyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit13EventMetadataV",
- "mangledName": "$s7LinkKit13EventMetadataV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "MFAType",
- "printedName": "MFAType",
- "children": [
{
"kind": "Var",
- "name": "code",
- "printedName": "code",
+ "name": "itemNoError",
+ "printedName": "itemNoError",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.MFAType.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30153,8 +30119,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit7MFATypeO4codeyA2CmF",
- "mangledName": "$s7LinkKit7MFATypeO4codeyA2CmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD0yA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD0yA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -30162,30 +30128,30 @@
},
{
"kind": "Var",
- "name": "device",
- "printedName": "device",
+ "name": "itemNotSupported",
+ "printedName": "itemNotSupported",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.MFAType.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30193,8 +30159,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit7MFATypeO6deviceyA2CmF",
- "mangledName": "$s7LinkKit7MFATypeO6deviceyA2CmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO16itemNotSupportedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16itemNotSupportedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -30202,30 +30168,30 @@
},
{
"kind": "Var",
- "name": "questions",
- "printedName": "questions",
+ "name": "incorrectDepositAmounts",
+ "printedName": "incorrectDepositAmounts",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.MFAType.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30233,8 +30199,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit7MFATypeO9questionsyA2CmF",
- "mangledName": "$s7LinkKit7MFATypeO9questionsyA2CmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO23incorrectDepositAmountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23incorrectDepositAmountsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -30242,30 +30208,30 @@
},
{
"kind": "Var",
- "name": "selections",
- "printedName": "selections",
+ "name": "userSetupRequired",
+ "printedName": "userSetupRequired",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.MFAType.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30273,59 +30239,393 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit7MFATypeO10selectionsyA2CmF",
- "mangledName": "$s7LinkKit7MFATypeO10selectionsyA2CmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO17userSetupRequiredyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO17userSetupRequiredyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Var",
+ "name": "mfaNotSupported",
+ "printedName": "mfaNotSupported",
"children": [
{
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit7MFATypeO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit7MFATypeO4fromACs7Decoder_p_tKcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO15mfaNotSupportedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO15mfaNotSupportedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
+ "kind": "Var",
+ "name": "noAccounts",
+ "printedName": "noAccounts",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO10noAccountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO10noAccountsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "noAuthAccounts",
+ "printedName": "noAuthAccounts",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO14noAuthAccountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO14noAuthAccountsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "noInvestmentAccounts",
+ "printedName": "noInvestmentAccounts",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO20noInvestmentAccountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO20noInvestmentAccountsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "noLiabilityAccounts",
+ "printedName": "noLiabilityAccounts",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO19noLiabilityAccountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO19noLiabilityAccountsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "productNotReady",
+ "printedName": "productNotReady",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO15productNotReadyyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO15productNotReadyyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "productsNotSupported",
+ "printedName": "productsNotSupported",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO20productsNotSupportedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO20productsNotSupportedyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "instantMatchFailed",
+ "printedName": "instantMatchFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO18instantMatchFailedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO18instantMatchFailedyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> (Swift.String) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
@@ -30335,8 +30635,8 @@
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit7MFATypeO8rawValueACSgSS_tcfc",
- "mangledName": "$s7LinkKit7MFATypeO8rawValueACSgSS_tcfc",
+ "usr": "s:7LinkKit13ItemErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO6stringACSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -30356,8 +30656,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO11descriptionSSvp",
- "mangledName": "$s7LinkKit7MFATypeO11descriptionSSvp",
+ "usr": "s:7LinkKit13ItemErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -30376,44 +30676,67 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO11descriptionSSvg",
- "mangledName": "$s7LinkKit7MFATypeO11descriptionSSvg",
+ "usr": "s:7LinkKit13ItemErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
"accessorKind": "get"
}
]
},
{
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "kind": "Var",
+ "name": "insufficientCredentialsString",
+ "printedName": "insufficientCredentialsString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7MFATypeO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit7MFATypeO6encode2toys7Encoder_p_tKF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "codeString",
- "printedName": "codeString",
+ "name": "invalidCredentialsString",
+ "printedName": "invalidCredentialsString",
"children": [
{
"kind": "TypeNominal",
@@ -30423,8 +30746,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO10codeStringSSvpZ",
- "mangledName": "$s7LinkKit7MFATypeO10codeStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -30448,8 +30771,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO10codeStringSSvgZ",
- "mangledName": "$s7LinkKit7MFATypeO10codeStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -30462,8 +30785,8 @@
},
{
"kind": "Var",
- "name": "deviceString",
- "printedName": "deviceString",
+ "name": "invalidMfaString",
+ "printedName": "invalidMfaString",
"children": [
{
"kind": "TypeNominal",
@@ -30473,8 +30796,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO12deviceStringSSvpZ",
- "mangledName": "$s7LinkKit7MFATypeO12deviceStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO16invalidMfaStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16invalidMfaStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -30498,8 +30821,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO12deviceStringSSvgZ",
- "mangledName": "$s7LinkKit7MFATypeO12deviceStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO16invalidMfaStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16invalidMfaStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -30512,8 +30835,8 @@
},
{
"kind": "Var",
- "name": "questionsString",
- "printedName": "questionsString",
+ "name": "invalidSendMethodString",
+ "printedName": "invalidSendMethodString",
"children": [
{
"kind": "TypeNominal",
@@ -30523,8 +30846,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO15questionsStringSSvpZ",
- "mangledName": "$s7LinkKit7MFATypeO15questionsStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -30548,8 +30871,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO15questionsStringSSvgZ",
- "mangledName": "$s7LinkKit7MFATypeO15questionsStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -30562,8 +30885,8 @@
},
{
"kind": "Var",
- "name": "selectionsString",
- "printedName": "selectionsString",
+ "name": "invalidUpdatedUsernameString",
+ "printedName": "invalidUpdatedUsernameString",
"children": [
{
"kind": "TypeNominal",
@@ -30573,8 +30896,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO16selectionsStringSSvpZ",
- "mangledName": "$s7LinkKit7MFATypeO16selectionsStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -30598,8 +30921,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO16selectionsStringSSvgZ",
- "mangledName": "$s7LinkKit7MFATypeO16selectionsStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -30610,55 +30933,30 @@
}
]
},
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit7MFATypeO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit7MFATypeO2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
{
"kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
+ "name": "itemLockedString",
+ "printedName": "itemLockedString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO9hashValueSivp",
- "mangledName": "$s7LinkKit7MFATypeO9hashValueSivp",
+ "usr": "s:7LinkKit13ItemErrorCodeO16itemLockedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16itemLockedStringSSvpZ",
"moduleName": "LinkKit",
- "implicit": true,
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -30667,62 +30965,98 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO9hashValueSivg",
- "mangledName": "$s7LinkKit7MFATypeO9hashValueSivg",
+ "usr": "s:7LinkKit13ItemErrorCodeO16itemLockedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16itemLockedStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
+ "kind": "Var",
+ "name": "itemLoginRequiredString",
+ "printedName": "itemLoginRequiredString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7MFATypeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit7MFATypeO4hash4intoys6HasherVz_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvpZ",
"moduleName": "LinkKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "itemNoErrorString",
+ "printedName": "itemNoErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKMFAType",
- "printedName": "LinkKit.PLKMFAType",
- "usr": "c:@E@PLKMFAType"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvp",
- "mangledName": "$s7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvp",
+ "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD6StringSSvpZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -30731,805 +31065,328 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKMFAType",
- "printedName": "LinkKit.PLKMFAType",
- "usr": "c:@E@PLKMFAType"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvg",
- "mangledName": "$s7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvg",
+ "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD6StringSSvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit7MFATypeO",
- "mangledName": "$s7LinkKit7MFATypeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
},
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PresentationMethod",
- "printedName": "PresentationMethod",
- "children": [
{
"kind": "Var",
- "name": "viewController",
- "printedName": "viewController",
+ "name": "itemNotSupportedString",
+ "printedName": "itemNotSupportedString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PresentationMethod.Type) -> (UIKit.UIViewController) -> LinkKit.PresentationMethod",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> LinkKit.PresentationMethod",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PresentationMethod.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18PresentationMethodO14viewControlleryACSo06UIViewF0CcACmF",
- "mangledName": "$s7LinkKit18PresentationMethodO14viewControlleryACSo06UIViewF0CcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "custom",
- "printedName": "custom",
+ "name": "incorrectDepositAmountsString",
+ "printedName": "incorrectDepositAmountsString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PresentationMethod.Type) -> (@escaping (UIKit.UIViewController) -> (), @escaping (UIKit.UIViewController) -> ()) -> LinkKit.PresentationMethod",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(@escaping (UIKit.UIViewController) -> (), @escaping (UIKit.UIViewController) -> ()) -> LinkKit.PresentationMethod",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "((UIKit.UIViewController) -> (), (UIKit.UIViewController) -> ())",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PresentationMethod.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18PresentationMethodO6customyACySo16UIViewControllerCc_yAFctcACmF",
- "mangledName": "$s7LinkKit18PresentationMethodO6customyACySo16UIViewControllerCc_yAFctcACmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit18PresentationMethodO",
- "mangledName": "$s7LinkKit18PresentationMethodO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ExitErrorCode",
- "printedName": "ExitErrorCode",
- "children": [
- {
- "kind": "Var",
- "name": "apiError",
- "printedName": "apiError",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.ApiErrorCode) -> LinkKit.ExitErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ApiErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO03apiD0yAcA03ApidE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD0yAcA03ApidE0OcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "authError",
- "printedName": "authError",
+ "name": "userSetupRequiredString",
+ "printedName": "userSetupRequiredString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.AuthErrorCode) -> LinkKit.ExitErrorCode",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.AuthErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO04authD0yAcA04AuthdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04authD0yAcA04AuthdE0OcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "assetReportError",
- "printedName": "assetReportError",
+ "name": "mfaNotSupportedString",
+ "printedName": "mfaNotSupportedString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.AssetReportErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD0yAcA05AssetgdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD0yAcA05AssetgdE0OcACmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "internal",
- "printedName": "internal",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (Swift.String) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
- }
- ]
- }
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO8internalyACSScACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO8internalyACSScACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "institutionError",
- "printedName": "institutionError",
- "children": [
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InstitutionErrorCode) -> LinkKit.ExitErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO011institutionD0yAcA011InstitutiondE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD0yAcA011InstitutiondE0OcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "itemError",
- "printedName": "itemError",
+ "name": "noAccountsString",
+ "printedName": "noAccountsString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.ItemErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO04itemD0yAcA04ItemdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD0yAcA04ItemdE0OcACmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO16noAccountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16noAccountsStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidInput",
- "printedName": "invalidInput",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InvalidInputErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
- }
- ]
- }
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO12invalidInputyAcA07InvalidgdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO12invalidInputyAcA07InvalidgdE0OcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidRequest",
- "printedName": "invalidRequest",
- "children": [
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InvalidRequestErrorCode) -> LinkKit.ExitErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO16noAccountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16noAccountsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO14invalidRequestyAcA07InvalidgdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO14invalidRequestyAcA07InvalidgdE0OcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "rateLimitExceeded",
- "printedName": "rateLimitExceeded",
+ "name": "noAuthAccountsString",
+ "printedName": "noAuthAccountsString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.RateLimitErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO17rateLimitExceededyAcA04RategdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO17rateLimitExceededyAcA04RategdE0OcACmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (Swift.String, Swift.String) -> LinkKit.ExitErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(type: Swift.String, code: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO7unknownyACSS_SStcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO7unknownyACSS_SStcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ExitErrorCodeO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit13ExitErrorCodeO4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "init_kind": "Designated"
- },
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "noInvestmentAccountsString",
+ "printedName": "noInvestmentAccountsString",
"children": [
{
"kind": "TypeNominal",
@@ -31539,12 +31396,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit13ExitErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -31559,476 +31421,22 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit13ExitErrorCodeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit13ExitErrorCodeO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "from",
- "printedName": "from(errorType:errorCode:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit13ExitErrorCodeO4from9errorType0gE0ACSgSS_SStFZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO4from9errorType0gE0ACSgSS_SStFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "CodingKeys",
- "printedName": "CodingKeys",
- "children": [
- {
- "kind": "Var",
- "name": "errorType",
- "printedName": "errorType",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.CodingKeys.Type) -> LinkKit.ExitErrorCode.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO9errorTypeyA2EmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO9errorTypeyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "errorCode",
- "printedName": "errorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.CodingKeys.Type) -> LinkKit.ExitErrorCode.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO05errorE0yA2EmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO05errorE0yA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueAESgSS_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvp",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvg",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "stringValue",
- "printedName": "stringValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvp",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvg",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueAESgSS_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "intValue",
- "printedName": "intValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvp",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvg",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(intValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueAESgSi_tcfc",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueAESgSi_tcfc",
+ "usr": "s:7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "enumRawTypeName": "String",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
+ "declAttributes": [
+ "Transparent"
],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "CodingKey",
- "printedName": "CodingKey",
- "usr": "s:s9CodingKeyP",
- "mangledName": "$ss9CodingKeyP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "invalidRequestString",
- "printedName": "invalidRequestString",
+ "name": "noLiabilityAccountsString",
+ "printedName": "noLiabilityAccountsString",
"children": [
{
"kind": "TypeNominal",
@@ -32038,8 +31446,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO20invalidRequestStringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO20invalidRequestStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32063,8 +31471,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO20invalidRequestStringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO20invalidRequestStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32077,8 +31485,8 @@
},
{
"kind": "Var",
- "name": "invalidInputString",
- "printedName": "invalidInputString",
+ "name": "productNotReadyString",
+ "printedName": "productNotReadyString",
"children": [
{
"kind": "TypeNominal",
@@ -32088,8 +31496,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO18invalidInputStringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO18invalidInputStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO21productNotReadyStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO21productNotReadyStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32113,8 +31521,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO18invalidInputStringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO18invalidInputStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO21productNotReadyStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO21productNotReadyStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32127,8 +31535,8 @@
},
{
"kind": "Var",
- "name": "institutionErrorString",
- "printedName": "institutionErrorString",
+ "name": "productsNotSupportedString",
+ "printedName": "productsNotSupportedString",
"children": [
{
"kind": "TypeNominal",
@@ -32138,8 +31546,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO011institutionD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD6StringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32163,8 +31571,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO011institutionD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD6StringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32177,8 +31585,8 @@
},
{
"kind": "Var",
- "name": "rateLimitExceededString",
- "printedName": "rateLimitExceededString",
+ "name": "instantMatchFailedString",
+ "printedName": "instantMatchFailedString",
"children": [
{
"kind": "TypeNominal",
@@ -32188,8 +31596,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32213,8 +31621,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32227,28 +31635,29 @@
},
{
"kind": "Var",
- "name": "apiErrorString",
- "printedName": "apiErrorString",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKItemErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKItemErrorCode",
+ "printedName": "LinkKit.PLKItemErrorCode",
+ "usr": "c:@E@PLKItemErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO03apiD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD6StringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvp",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvp",
"moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -32257,47 +31666,100 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKItemErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKItemErrorCode",
+ "printedName": "LinkKit.PLKItemErrorCode",
+ "usr": "c:@E@PLKItemErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO03apiD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD6StringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvg",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
+ "isFromExtension": true,
"accessorKind": "get"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit13ItemErrorCodeO",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkEvent",
+ "printedName": "LinkEvent",
+ "children": [
{
"kind": "Var",
- "name": "itemErrorString",
- "printedName": "itemErrorString",
+ "name": "eventName",
+ "printedName": "eventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO04itemD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD6StringSSvpZ",
+ "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovp",
+ "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -32307,97 +31769,83 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO04itemD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD6StringSSvgZ",
+ "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovg",
+ "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "authErrorString",
- "printedName": "authErrorString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO04authD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04authD6StringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ },
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO04authD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04authD6StringSSvgZ",
+ "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovs",
+ "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovs",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
],
- "accessorKind": "get"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0OvM",
+ "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0OvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
]
},
{
"kind": "Var",
- "name": "assetReportErrorString",
- "printedName": "assetReportErrorString",
+ "name": "metadata",
+ "printedName": "metadata",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD6StringSSvpZ",
+ "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvp",
+ "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -32407,445 +31855,498 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD6StringSSvgZ",
+ "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvg",
+ "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "internalString",
- "printedName": "internalString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO14internalStringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO14internalStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ },
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO14internalStringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO14internalStringSSvgZ",
+ "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvs",
+ "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvs",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
],
- "accessorKind": "get"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvM",
+ "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
]
},
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
},
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit0A5EventV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(eventName:metadata:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
},
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit13ExitErrorCodeO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO2eeoiySbAC_ACtFZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV9eventName8metadataAcA0cE0O_AA0C8MetadataVtcfc",
+ "mangledName": "$s7LinkKit0A5EventV9eventName8metadataAcA0cE0O_AA0C8MetadataVtcfc",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit13ExitErrorCodeO",
- "mangledName": "$s7LinkKit13ExitErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InvalidRequestErrorCode",
- "printedName": "InvalidRequestErrorCode",
- "children": [
- {
- "kind": "Var",
- "name": "missingFields",
- "printedName": "missingFields",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO13missingFieldsyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO13missingFieldsyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A5EventV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit0A5EventV6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "unknownFields",
- "printedName": "unknownFields",
+ "kind": "TypeDecl",
+ "name": "CodingKeys",
+ "printedName": "CodingKeys",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
+ "kind": "Var",
+ "name": "eventName",
+ "printedName": "eventName",
"children": [
{
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkEvent.CodingKeys.Type) -> LinkKit.LinkEvent.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.LinkEvent.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO13unknownFieldsyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO13unknownFieldsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidField",
- "printedName": "invalidField",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO9eventNameyA2EmF",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO9eventNameyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
+ "kind": "Var",
+ "name": "metadata",
+ "printedName": "metadata",
"children": [
{
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkEvent.CodingKeys.Type) -> LinkKit.LinkEvent.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.LinkEvent.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO12invalidFieldyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO12invalidFieldyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidBody",
- "printedName": "invalidBody",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8metadatayA2EmF",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8metadatayA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ "name": "Optional",
+ "printedName": "LinkKit.LinkEvent.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueAESgSS_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "rawValue",
+ "printedName": "rawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueSSvp",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueSSvg",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO11invalidBodyyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11invalidBodyyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidAddress",
- "printedName": "invalidAddress",
- "children": [
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
+ "kind": "Var",
+ "name": "stringValue",
+ "printedName": "stringValue",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueSSvp",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueSSvg",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO14invalidAddressyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14invalidAddressyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "notFound",
- "printedName": "notFound",
- "children": [
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(stringValue:)",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ "name": "Optional",
+ "printedName": "LinkKit.LinkEvent.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueAESgSS_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "intValue",
+ "printedName": "intValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
- ]
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueSiSgvp",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueSiSgvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueSiSgvg",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueSiSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO8notFoundyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO8notFoundyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "sandboxOnly",
- "printedName": "sandboxOnly",
- "children": [
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(intValue:)",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "name": "Optional",
+ "printedName": "LinkKit.LinkEvent.CodingKeys?",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueAESgSi_tcfc",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueAESgSi_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO11sandboxOnlyyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11sandboxOnlyyA2CmF",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
+ "AccessControl"
+ ],
+ "enumRawTypeName": "String",
+ "isEnumExhaustive": true,
+ "conformances": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> (Swift.String) -> LinkKit.InvalidRequestErrorCode",
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.InvalidRequestErrorCode",
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
"children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -32853,74 +32354,65 @@
"usr": "s:SS"
}
]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
{
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ "kind": "Conformance",
+ "name": "CodingKey",
+ "printedName": "CodingKey",
+ "usr": "s:s9CodingKeyP",
+ "mangledName": "$ss9CodingKeyP"
},
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6stringACSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ ]
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "dateFormatter",
+ "printedName": "dateFormatter",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ISO8601DateFormatter",
+ "printedName": "Foundation.ISO8601DateFormatter",
+ "usr": "c:objc(cs)NSISO8601DateFormatter"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvpZ",
+ "mangledName": "$s7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "AccessControl"
+ "HasInitialValue",
+ "HasStorage"
],
+ "isFromExtension": true,
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -32929,198 +32421,46 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ISO8601DateFormatter",
+ "printedName": "Foundation.ISO8601DateFormatter",
+ "usr": "c:objc(cs)NSISO8601DateFormatter"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "missingFieldsString",
- "printedName": "missingFieldsString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvgZ",
+ "usr": "s:7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvgZ",
+ "mangledName": "$s7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
+ "isFromExtension": true,
"accessorKind": "get"
}
]
},
{
- "kind": "Var",
- "name": "unknownFieldsString",
- "printedName": "unknownFieldsString",
+ "kind": "Function",
+ "name": "from",
+ "printedName": "from(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidFieldString",
- "printedName": "invalidFieldString",
- "children": [
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidBodyString",
- "printedName": "invalidBodyString",
- "children": [
+ "name": "Link_Workflow_Nodes_Panes_SDKEvent",
+ "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_SDKEvent",
+ "usr": "s:13WorkflowProto05Link_A21_Nodes_Panes_SDKEventV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -33129,168 +32469,48 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidAddressString",
- "printedName": "invalidAddressString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A5EventV4fromyAC13WorkflowProto0a1_E21_Nodes_Panes_SDKEventV_SSSgtFZ",
+ "mangledName": "$s7LinkKit0A5EventV4fromyAC13WorkflowProto0a1_E21_Nodes_Panes_SDKEventV_SSSgtFZ",
"moduleName": "LinkKit",
"static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "notFoundString",
- "printedName": "notFoundString",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sandboxOnlyString",
- "printedName": "sandboxOnlyString",
- "children": [
+ "kind": "TypeNominal",
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A5EventV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit0A5EventV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
@@ -33299,23 +32519,18 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInvalidRequestErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInvalidRequestErrorCode",
- "printedName": "LinkKit.PLKInvalidRequestErrorCode",
- "usr": "c:@E@PLKInvalidRequestErrorCode"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKLinkEvent",
+ "printedName": "LinkKit.PLKLinkEvent",
+ "usr": "c:objc(cs)PLKLinkEvent"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "usr": "s:7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvp",
+ "mangledName": "$s7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvp",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
"isFromExtension": true,
"accessors": [
{
@@ -33325,22 +32540,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInvalidRequestErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInvalidRequestErrorCode",
- "printedName": "LinkKit.PLKInvalidRequestErrorCode",
- "usr": "c:@E@PLKInvalidRequestErrorCode"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKLinkEvent",
+ "printedName": "LinkKit.PLKLinkEvent",
+ "usr": "c:objc(cs)PLKLinkEvent"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "usr": "s:7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvg",
+ "mangledName": "$s7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
@@ -33348,68 +32555,76 @@
]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit0A5EventV",
+ "mangledName": "$s7LinkKit0A5EventV",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "InvalidInputErrorCode",
- "printedName": "InvalidInputErrorCode",
+ "name": "Product",
+ "printedName": "Product",
"children": [
{
"kind": "Var",
- "name": "invalidApiKeys",
- "printedName": "invalidApiKeys",
+ "name": "assets",
+ "printedName": "assets",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -33417,8 +32632,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO14invalidApiKeysyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO14invalidApiKeysyA2CmF",
+ "usr": "s:7LinkKit7ProductO6assetsyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO6assetsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -33426,30 +32641,30 @@
},
{
"kind": "Var",
- "name": "unauthorizedEnvironment",
- "printedName": "unauthorizedEnvironment",
+ "name": "auth",
+ "printedName": "auth",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -33457,8 +32672,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO23unauthorizedEnvironmentyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO23unauthorizedEnvironmentyA2CmF",
+ "usr": "s:7LinkKit7ProductO4authyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO4authyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -33466,30 +32681,30 @@
},
{
"kind": "Var",
- "name": "invalidAccessToken",
- "printedName": "invalidAccessToken",
+ "name": "depositSwitch",
+ "printedName": "depositSwitch",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -33497,8 +32712,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidAccessTokenyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidAccessTokenyA2CmF",
+ "usr": "s:7LinkKit7ProductO13depositSwitchyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO13depositSwitchyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -33506,30 +32721,30 @@
},
{
"kind": "Var",
- "name": "invalidPublicToken",
- "printedName": "invalidPublicToken",
- "children": [
+ "name": "identity",
+ "printedName": "identity",
+ "children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -33537,8 +32752,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidPublicTokenyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidPublicTokenyA2CmF",
+ "usr": "s:7LinkKit7ProductO8identityyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO8identityyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -33546,30 +32761,30 @@
},
{
"kind": "Var",
- "name": "invalidProduct",
- "printedName": "invalidProduct",
+ "name": "income",
+ "printedName": "income",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -33577,8 +32792,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO14invalidProductyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO14invalidProductyA2CmF",
+ "usr": "s:7LinkKit7ProductO6incomeyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO6incomeyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -33586,30 +32801,30 @@
},
{
"kind": "Var",
- "name": "invalidAccountId",
- "printedName": "invalidAccountId",
+ "name": "investments",
+ "printedName": "investments",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -33617,8 +32832,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO16invalidAccountIdyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO16invalidAccountIdyA2CmF",
+ "usr": "s:7LinkKit7ProductO11investmentsyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO11investmentsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -33626,30 +32841,30 @@
},
{
"kind": "Var",
- "name": "invalidInstitution",
- "printedName": "invalidInstitution",
+ "name": "liabilities",
+ "printedName": "liabilities",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -33657,8 +32872,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidInstitutionyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidInstitutionyA2CmF",
+ "usr": "s:7LinkKit7ProductO11liabilitiesyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO11liabilitiesyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -33666,30 +32881,30 @@
},
{
"kind": "Var",
- "name": "tooManyVerificationAttempts",
- "printedName": "tooManyVerificationAttempts",
+ "name": "liabilitiesReport",
+ "printedName": "liabilitiesReport",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -33697,8 +32912,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO27tooManyVerificationAttemptsyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO27tooManyVerificationAttemptsyA2CmF",
+ "usr": "s:7LinkKit7ProductO17liabilitiesReportyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO17liabilitiesReportyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -33706,43 +32921,30 @@
},
{
"kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "name": "paymentInitiation",
+ "printedName": "paymentInitiation",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> (Swift.String) -> LinkKit.InvalidInputErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.InvalidInputErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -33750,36 +32952,52 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit7ProductO17paymentInitiationyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO17paymentInitiationyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
+ "kind": "Var",
+ "name": "transactions",
+ "printedName": "transactions",
"children": [
{
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.Product.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6stringACSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit7ProductO12transactionsyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO12transactionsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
@@ -33794,8 +33012,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit7ProductO11descriptionSSvp",
+ "mangledName": "$s7LinkKit7ProductO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -33814,8 +33032,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit7ProductO11descriptionSSvg",
+ "mangledName": "$s7LinkKit7ProductO11descriptionSSvg",
"moduleName": "LinkKit",
"accessorKind": "get"
}
@@ -33823,8 +33041,8 @@
},
{
"kind": "Var",
- "name": "invalidApiKeysString",
- "printedName": "invalidApiKeysString",
+ "name": "assetsString",
+ "printedName": "assetsString",
"children": [
{
"kind": "TypeNominal",
@@ -33834,8 +33052,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvpZ",
+ "usr": "s:7LinkKit7ProductO12assetsStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO12assetsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33859,8 +33077,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvgZ",
+ "usr": "s:7LinkKit7ProductO12assetsStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO12assetsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33873,8 +33091,8 @@
},
{
"kind": "Var",
- "name": "unauthorizedEnvironmentString",
- "printedName": "unauthorizedEnvironmentString",
+ "name": "authString",
+ "printedName": "authString",
"children": [
{
"kind": "TypeNominal",
@@ -33884,8 +33102,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvpZ",
+ "usr": "s:7LinkKit7ProductO10authStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO10authStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33909,8 +33127,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvgZ",
+ "usr": "s:7LinkKit7ProductO10authStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO10authStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33923,8 +33141,8 @@
},
{
"kind": "Var",
- "name": "invalidAccessTokenString",
- "printedName": "invalidAccessTokenString",
+ "name": "depositSwitchString",
+ "printedName": "depositSwitchString",
"children": [
{
"kind": "TypeNominal",
@@ -33934,8 +33152,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvpZ",
+ "usr": "s:7LinkKit7ProductO19depositSwitchStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO19depositSwitchStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33959,8 +33177,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvgZ",
+ "usr": "s:7LinkKit7ProductO19depositSwitchStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO19depositSwitchStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33973,8 +33191,8 @@
},
{
"kind": "Var",
- "name": "invalidPublicTokenString",
- "printedName": "invalidPublicTokenString",
+ "name": "identityString",
+ "printedName": "identityString",
"children": [
{
"kind": "TypeNominal",
@@ -33984,8 +33202,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvpZ",
+ "usr": "s:7LinkKit7ProductO14identityStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO14identityStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34009,8 +33227,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvgZ",
+ "usr": "s:7LinkKit7ProductO14identityStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO14identityStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34023,8 +33241,8 @@
},
{
"kind": "Var",
- "name": "invalidProductString",
- "printedName": "invalidProductString",
+ "name": "incomeString",
+ "printedName": "incomeString",
"children": [
{
"kind": "TypeNominal",
@@ -34034,8 +33252,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvpZ",
+ "usr": "s:7LinkKit7ProductO12incomeStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO12incomeStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34059,8 +33277,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvgZ",
+ "usr": "s:7LinkKit7ProductO12incomeStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO12incomeStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34073,8 +33291,8 @@
},
{
"kind": "Var",
- "name": "invalidAccountIdString",
- "printedName": "invalidAccountIdString",
+ "name": "investmentsString",
+ "printedName": "investmentsString",
"children": [
{
"kind": "TypeNominal",
@@ -34084,8 +33302,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvpZ",
+ "usr": "s:7LinkKit7ProductO17investmentsStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO17investmentsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34109,8 +33327,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvgZ",
+ "usr": "s:7LinkKit7ProductO17investmentsStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO17investmentsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34123,8 +33341,8 @@
},
{
"kind": "Var",
- "name": "invalidInstitutionString",
- "printedName": "invalidInstitutionString",
+ "name": "liabilitiesString",
+ "printedName": "liabilitiesString",
"children": [
{
"kind": "TypeNominal",
@@ -34134,8 +33352,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvpZ",
+ "usr": "s:7LinkKit7ProductO17liabilitiesStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO17liabilitiesStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34159,8 +33377,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvgZ",
+ "usr": "s:7LinkKit7ProductO17liabilitiesStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO17liabilitiesStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34173,8 +33391,8 @@
},
{
"kind": "Var",
- "name": "tooManyVerificationAttemptsString",
- "printedName": "tooManyVerificationAttemptsString",
+ "name": "liabilitiesReportString",
+ "printedName": "liabilitiesReportString",
"children": [
{
"kind": "TypeNominal",
@@ -34184,8 +33402,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvpZ",
+ "usr": "s:7LinkKit7ProductO23liabilitiesReportStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO23liabilitiesReportStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34209,8 +33427,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvgZ",
+ "usr": "s:7LinkKit7ProductO23liabilitiesReportStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO23liabilitiesReportStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34223,29 +33441,28 @@
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "paymentInitiationString",
+ "printedName": "paymentInitiationString",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInvalidInputErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInvalidInputErrorCode",
- "printedName": "LinkKit.PLKInvalidInputErrorCode",
- "usr": "c:@E@PLKInvalidInputErrorCode"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "usr": "s:7LinkKit7ProductO23paymentInitiationStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO23paymentInitiationStringSSvpZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -34254,681 +33471,656 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInvalidInputErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInvalidInputErrorCode",
- "printedName": "LinkKit.PLKInvalidInputErrorCode",
- "usr": "c:@E@PLKInvalidInputErrorCode"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "usr": "s:7LinkKit7ProductO23paymentInitiationStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO23paymentInitiationStringSSvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "RateLimitErrorCode",
- "printedName": "RateLimitErrorCode",
- "children": [
{
"kind": "Var",
- "name": "accountsLimit",
- "printedName": "accountsLimit",
+ "name": "transactionsString",
+ "printedName": "transactionsString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit7ProductO18transactionsStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO18transactionsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7ProductO18transactionsStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO18transactionsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "additionLimit",
- "printedName": "additionLimit",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD0yA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7ProductO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit7ProductO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "static": true,
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "authLimit",
- "printedName": "authLimit",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit7ProductO9hashValueSivp",
+ "mangledName": "$s7LinkKit7ProductO9hashValueSivp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- }
- ]
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7ProductO9hashValueSivg",
+ "mangledName": "$s7LinkKit7ProductO9hashValueSivg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04authD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "identityLimit",
- "printedName": "identityLimit",
+ "kind": "Function",
+ "name": "hash",
+ "printedName": "hash(into:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD0yA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7ProductO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit7ProductO4hash4intoys6HasherVz_tF",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "incomeLimit",
- "printedName": "incomeLimit",
+ "name": "allCases",
+ "printedName": "allCases",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Product]",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- }
- ]
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
- ]
+ ],
+ "usr": "s:Sa"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD0yA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7ProductO8allCasesSayACGvpZ",
+ "mangledName": "$s7LinkKit7ProductO8allCasesSayACGvpZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "itemGetLimit",
- "printedName": "itemGetLimit",
- "children": [
+ "static": true,
+ "implicit": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "name": "Array",
+ "printedName": "[LinkKit.Product]",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
- ]
+ ],
+ "usr": "s:Sa"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7ProductO8allCasesSayACGvgZ",
+ "mangledName": "$s7LinkKit7ProductO8allCasesSayACGvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit7ProductO",
+ "mangledName": "$s7LinkKit7ProductO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
- "kind": "Var",
- "name": "rateLimit",
- "printedName": "rateLimit",
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CaseIterable",
+ "printedName": "CaseIterable",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "kind": "TypeWitness",
+ "name": "AllCases",
+ "printedName": "AllCases",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "name": "Array",
+ "printedName": "[LinkKit.Product]",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
- ]
+ ],
+ "usr": "s:Sa"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
+ "usr": "s:s12CaseIterableP",
+ "mangledName": "$ss12CaseIterableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LoadingPaneViewController",
+ "printedName": "LoadingPaneViewController",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(with:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LoadingPaneViewController",
+ "printedName": "LinkKit.LoadingPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LoadingViewModel",
+ "printedName": "Workflow.LoadingViewModel",
+ "usr": "s:8Workflow16LoadingViewModelC"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit25LoadingPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "transactionsLimit",
- "printedName": "transactionsLimit",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.LoadingPaneViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- }
- ]
+ "name": "LoadingPaneViewController",
+ "printedName": "LinkKit.LoadingPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD0yA2CmF",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
"declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> (Swift.String) -> LinkKit.RateLimitErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.RateLimitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC11viewDidLoadyyF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
+ "kind": "Function",
+ "name": "viewWillAppear",
+ "printedName": "viewWillAppear(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO6stringACSS_tcfc",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewWillAppear:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC14viewWillAppearyySbF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewWillAppear:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
"AccessControl"
],
- "init_kind": "Designated"
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "description",
- "printedName": "description",
+ "kind": "Function",
+ "name": "viewDidAppear",
+ "printedName": "viewDidAppear(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO11descriptionSSvp",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidAppear:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC13viewDidAppearyySbF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidAppear:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
"AccessControl"
],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "accountsLimitString",
- "printedName": "accountsLimitString",
+ "kind": "Function",
+ "name": "viewDidDisappear",
+ "printedName": "viewDidDisappear(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvpZ",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidDisappear:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC16viewDidDisappearyySbF",
"moduleName": "LinkKit",
- "static": true,
+ "overriding": true,
+ "objc_name": "viewDidDisappear:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "additionLimitString",
- "printedName": "additionLimitString",
+ "name": "activityIndicatorView",
+ "printedName": "activityIndicatorView",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PlaidActivityIndicator",
+ "printedName": "Threads.PlaidActivityIndicator",
+ "usr": "c:@M@Threads@objc(cs)PlaidActivityIndicator"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD6StringSSvpZ",
+ "usr": "s:7LinkKit25LoadingPaneViewControllerC017activityIndicatorE033_02203F4AD901BE57F27AD614C29CA913LL7Threads013PlaidActivityH0Cvp",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC017activityIndicatorE033_02203F4AD901BE57F27AD614C29CA913LL7Threads013PlaidActivityH0Cvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
+ "Final",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
+ "fixedbinaryorder": 0,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD6StringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "authLimitString",
- "printedName": "authLimitString",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LoadingViewModel",
+ "printedName": "Workflow.LoadingViewModel",
+ "usr": "s:8Workflow16LoadingViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04authD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD6StringSSvpZ",
+ "usr": "s:7LinkKit25LoadingPaneViewControllerC9viewModel33_02203F4AD901BE57F27AD614C29CA913LL8Workflow0ceH0Cvp",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC9viewModel33_02203F4AD901BE57F27AD614C29CA913LL8Workflow0ceH0Cvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Custom",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 1,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04authD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD6StringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "identityLimitString",
- "printedName": "identityLimitString",
+ "name": "timer",
+ "printedName": "timer",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Foundation.Timer?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Timer",
+ "printedName": "Foundation.Timer",
+ "usr": "c:objc(cs)NSTimer"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD6StringSSvpZ",
+ "usr": "s:7LinkKit25LoadingPaneViewControllerC5timer33_02203F4AD901BE57F27AD614C29CA913LLSo7NSTimerCSgvp",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC5timer33_02203F4AD901BE57F27AD614C29CA913LLSo7NSTimerCSgvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 2,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "LoadingPaneViewController",
+ "printedName": "LinkKit.LoadingPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -34937,23 +34129,137 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD6StringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
+ }
],
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkTokenConfiguration",
+ "children": [
{
"kind": "Var",
- "name": "incomeLimitString",
- "printedName": "incomeLimitString",
+ "name": "token",
+ "printedName": "token",
"children": [
{
"kind": "TypeNominal",
@@ -34963,14 +34269,13 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvpZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV5tokenSSvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV5tokenSSvp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"isLet": true,
"hasStorage": true,
@@ -34988,41 +34293,47 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV5tokenSSvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV5tokenSSvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "itemGetLimitString",
- "printedName": "itemGetLimitString",
+ "name": "onSuccess",
+ "printedName": "onSuccess",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
+ }
+ ]
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvpZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -35031,150 +34342,122 @@
"printedName": "Get()",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
+ }
+ ]
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "rateLimitString",
- "printedName": "rateLimitString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD6StringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ },
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
+ }
+ ]
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD6StringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvs",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvs",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "transactionsLimitString",
- "printedName": "transactionsLimitString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "accessorKind": "set"
+ },
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0VcvM",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0VcvM",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "accessorKind": "_modify"
}
]
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "onExit",
+ "printedName": "onExit",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKRateLimitErrorCode?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkExit) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKRateLimitErrorCode",
- "printedName": "LinkKit.PLKRateLimitErrorCode",
- "usr": "c:@E@PLKRateLimitErrorCode"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
}
- ],
- "usr": "s:Sq"
+ ]
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvp",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvp",
+ "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -35182,286 +34465,232 @@
"printedName": "Get()",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKRateLimitErrorCode?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkExit) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKRateLimitErrorCode",
- "printedName": "LinkKit.PLKRateLimitErrorCode",
- "usr": "c:@E@PLKRateLimitErrorCode"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
}
- ],
- "usr": "s:Sq"
+ ]
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvg",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvg",
+ "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvg",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "implicit": true,
"accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit18RateLimitErrorCodeO",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApiErrorCode",
- "printedName": "ApiErrorCode",
- "children": [
- {
- "kind": "Var",
- "name": "internalServerError",
- "printedName": "internalServerError",
- "children": [
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ApiErrorCode.Type) -> LinkKit.ApiErrorCode",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ApiErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkExit) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
}
]
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvs",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0VcvM",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0VcvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD0yA2CmF",
- "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "plannedMaintenance",
- "printedName": "plannedMaintenance",
+ "name": "onEvent",
+ "printedName": "onEvent",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ApiErrorCode.Type) -> LinkKit.ApiErrorCode",
+ "printedName": "(LinkKit.LinkEvent) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ApiErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- }
- ]
- }
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
+ }
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit12ApiErrorCodeO18plannedMaintenanceyA2CmF",
- "mangledName": "$s7LinkKit12ApiErrorCodeO18plannedMaintenanceyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ApiErrorCode.Type) -> (Swift.String) -> LinkKit.ApiErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ApiErrorCode",
+ "printedName": "(LinkKit.LinkEvent) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
}
]
- },
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ApiErrorCode.Type",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkEvent) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit12ApiErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit12ApiErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvs",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit12ApiErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit12ApiErrorCodeO6stringACSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit12ApiErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit12ApiErrorCodeO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ApiErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit12ApiErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0VcvM",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0VcvM",
"moduleName": "LinkKit",
- "accessorKind": "get"
+ "implicit": true,
+ "accessorKind": "_modify"
}
]
},
{
"kind": "Var",
- "name": "internalServerErrorString",
- "printedName": "internalServerErrorString",
+ "name": "noLoadingState",
+ "printedName": "noLoadingState",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD6StringSSvpZ",
- "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD6StringSSvpZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -35471,98 +34700,127 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD6StringSSvgZ",
- "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD6StringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "plannedMaintenanceString",
- "printedName": "plannedMaintenanceString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvpZ",
- "mangledName": "$s7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ },
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvgZ",
- "mangledName": "$s7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvs",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvs",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
],
- "accessorKind": "get"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvM",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
]
},
{
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(token:onSuccess:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKApiErrorCode?",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkSuccess) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKApiErrorCode",
- "printedName": "LinkKit.PLKApiErrorCode",
- "usr": "c:@E@PLKApiErrorCode"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
}
- ],
- "usr": "s:Sq"
+ ]
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV5token9onSuccessACSS_yAA0aG0Vctcfc",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV5token9onSuccessACSS_yAA0aG0Vctcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "isLinkUIPresentationImmediate",
+ "printedName": "isLinkUIPresentationImmediate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvp",
- "mangledName": "$s7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvp",
+ "usr": "s:7LinkKit0A18TokenConfigurationV02isA23UIPresentationImmediateSbvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV02isA23UIPresentationImmediateSbvp",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
"isFromExtension": true,
"accessors": [
{
@@ -35572,2010 +34830,1701 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKApiErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKApiErrorCode",
- "printedName": "LinkKit.PLKApiErrorCode",
- "usr": "c:@E@PLKApiErrorCode"
- }
- ],
- "usr": "s:Sq"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvg",
- "mangledName": "$s7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvg",
+ "usr": "s:7LinkKit0A18TokenConfigurationV02isA23UIPresentationImmediateSbvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV02isA23UIPresentationImmediateSbvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
}
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit12ApiErrorCodeO",
- "mangledName": "$s7LinkKit12ApiErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
},
{
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ItemErrorCode",
- "printedName": "ItemErrorCode",
- "children": [
- {
- "kind": "Var",
- "name": "insufficientCredentials",
- "printedName": "insufficientCredentials",
+ "kind": "Function",
+ "name": "environment",
+ "printedName": "environment(_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.Environment?",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO23insufficientCredentialsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23insufficientCredentialsyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A18TokenConfigurationV11environmentyAA11EnvironmentOSg3LogAHVF",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV11environmentyAA11EnvironmentOSg3LogAHVF",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "invalidCredentials",
- "printedName": "invalidCredentials",
+ "kind": "Function",
+ "name": "loadSessionConfiguration",
+ "printedName": "loadSessionConfiguration(_:_:_:_:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
+ },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "printedName": "(WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "OneOf_Configuration",
+ "printedName": "WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration",
+ "usr": "s:13WorkflowProto09Link_Api_cA12StartRequestV19OneOf_ConfigurationO"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO18invalidCredentialsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO18invalidCredentialsyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A18TokenConfigurationV011loadSessionD0yySS_SS3LogAEVy13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_D0OctF",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV011loadSessionD0yySS_SS3LogAEVy13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_D0OctF",
"moduleName": "LinkKit",
"declAttributes": [
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidMfa",
- "printedName": "invalidMfa",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
- }
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO10invalidMfayA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO10invalidMfayA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit0A18TokenConfigurationV",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AuthenticationServices",
+ "printedName": "AuthenticationServices",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "os",
+ "printedName": "os",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkHandler",
+ "printedName": "LinkHandler",
+ "children": [
{
- "kind": "Var",
- "name": "invalidSendMethod",
- "printedName": "invalidSendMethod",
+ "kind": "TypeDecl",
+ "name": "Dependencies",
+ "printedName": "Dependencies",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Var",
+ "name": "keyValueStoreServiceFactory",
+ "printedName": "keyValueStoreServiceFactory",
"children": [
{
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "() -> LinkKit.KeyValueStoreService",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "KeyValueStoreService",
+ "printedName": "LinkKit.KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
}
]
}
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvp",
+ "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "() -> LinkKit.KeyValueStoreService",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreService",
+ "printedName": "LinkKit.KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ]
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvg",
+ "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO17invalidSendMethodyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO17invalidSendMethodyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidUpdatedUsername",
- "printedName": "invalidUpdatedUsername",
- "children": [
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(keyValueStoreServiceFactory:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Dependencies",
+ "printedName": "LinkKit.LinkHandler.Dependencies",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV"
},
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "() -> LinkKit.KeyValueStoreService",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "KeyValueStoreService",
+ "printedName": "LinkKit.KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
}
- ]
+ ],
+ "hasDefaultArg": true
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAeA03KeyfgH0_pyc_tcfc",
+ "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAeA03KeyfgH0_pyc_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO22invalidUpdatedUsernameyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO22invalidUpdatedUsernameyA2CmF",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV",
+ "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
]
},
{
- "kind": "Var",
- "name": "itemLocked",
- "printedName": "itemLocked",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(configuration:environment:dependencies:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "LinkHandler",
+ "printedName": "LinkKit.LinkHandler",
+ "usr": "s:7LinkKit0A7HandlerC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Dependencies",
+ "printedName": "LinkKit.LinkHandler.Dependencies",
+ "hasDefaultArg": true,
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO10itemLockedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO10itemLockedyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A7HandlerC13configuration11environment12dependenciesAcA0A18TokenConfigurationV_AA11EnvironmentOAC12DependenciesVtcfc",
+ "mangledName": "$s7LinkKit0A7HandlerC13configuration11environment12dependenciesAcA0A18TokenConfigurationV_AA11EnvironmentOAC12DependenciesVtcfc",
"moduleName": "LinkKit",
"declAttributes": [
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "itemLoginRequired",
- "printedName": "itemLoginRequired",
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(presentUsing:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO17itemLoginRequiredyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO17itemLoginRequiredyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7HandlerC4open12presentUsingyAA18PresentationMethodO_tF",
+ "mangledName": "$s7LinkKit0A7HandlerC4open12presentUsingyAA18PresentationMethodO_tF",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "itemNoError",
- "printedName": "itemNoError",
+ "kind": "Function",
+ "name": "resumeAfterTermination",
+ "printedName": "resumeAfterTermination(from:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD0yA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD0yA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7HandlerC22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "mangledName": "$s7LinkKit0A7HandlerC22resumeAfterTermination4fromy10Foundation3URLV_tF",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "itemNotSupported",
- "printedName": "itemNotSupported",
+ "kind": "Function",
+ "name": "createEmbeddedView",
+ "printedName": "createEmbeddedView(presentUsing:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO16itemNotSupportedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16itemNotSupportedyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7HandlerC18createEmbeddedView12presentUsingSo6UIViewCAA18PresentationMethodO_tF",
+ "mangledName": "$s7LinkKit0A7HandlerC18createEmbeddedView12presentUsingSo6UIViewCAA18PresentationMethodO_tF",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "incorrectDepositAmounts",
- "printedName": "incorrectDepositAmounts",
+ "name": "linkOpenID",
+ "printedName": "linkOpenID",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO23incorrectDepositAmountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23incorrectDepositAmountsyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC10linkOpenIDSSvp",
+ "mangledName": "$s7LinkKit0A7HandlerC10linkOpenIDSSvp",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "userSetupRequired",
- "printedName": "userSetupRequired",
- "children": [
+ ],
+ "fixedbinaryorder": 0,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7HandlerC10linkOpenIDSSvg",
+ "mangledName": "$s7LinkKit0A7HandlerC10linkOpenIDSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "isOpen": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO17userSetupRequiredyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO17userSetupRequiredyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "mfaNotSupported",
- "printedName": "mfaNotSupported",
+ "name": "onSessionCreated",
+ "printedName": "onSessionCreated",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((Workflow.Session) -> ())?",
"children": [
{
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Workflow.Session) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Session",
+ "printedName": "Workflow.Session",
+ "usr": "s:8Workflow7SessionC"
}
]
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO15mfaNotSupportedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO15mfaNotSupportedyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvp",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "noAccounts",
- "printedName": "noAccounts",
- "children": [
+ ],
+ "fixedbinaryorder": 1,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "name": "Optional",
+ "printedName": "((Workflow.Session) -> ())?",
"children": [
{
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Workflow.Session) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Session",
+ "printedName": "Workflow.Session",
+ "usr": "s:8Workflow7SessionC"
+ }
+ ]
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO10noAccountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO10noAccountsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "noAuthAccounts",
- "printedName": "noAuthAccounts",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvg",
+ "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "isOpen": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "name": "Optional",
+ "printedName": "((Workflow.Session) -> ())?",
"children": [
{
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Workflow.Session) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Session",
+ "printedName": "Workflow.Session",
+ "usr": "s:8Workflow7SessionC"
+ }
+ ]
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvs",
+ "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "isOpen": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvM",
+ "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "isOpen": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO14noAuthAccountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO14noAuthAccountsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "noInvestmentAccounts",
- "printedName": "noInvestmentAccounts",
+ "name": "linkPersistentID",
+ "printedName": "linkPersistentID",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC16linkPersistentIDSSvp",
+ "mangledName": "$s7LinkKit0A7HandlerC16linkPersistentIDSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 2,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7HandlerC16linkPersistentIDSSvg",
+ "mangledName": "$s7LinkKit0A7HandlerC16linkPersistentIDSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent",
+ "Final"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO20noInvestmentAccountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO20noInvestmentAccountsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "noLiabilityAccounts",
- "printedName": "noLiabilityAccounts",
+ "name": "openCallTimestamp",
+ "printedName": "openCallTimestamp",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Double?",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO19noLiabilityAccountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO19noLiabilityAccountsyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC17openCallTimestamp33_2F35CE8D0F063DC4E7A32246BB6D8185LLSdSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC17openCallTimestamp33_2F35CE8D0F063DC4E7A32246BB6D8185LLSdSgvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "fixedbinaryorder": 3,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "productNotReady",
- "printedName": "productNotReady",
+ "name": "state",
+ "printedName": "state",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "State",
+ "printedName": "LinkKit.LinkHandler.State",
+ "usr": "s:7LinkKit0A7HandlerC5State33_2F35CE8D0F063DC4E7A32246BB6D8185LLO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO15productNotReadyyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO15productNotReadyyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC5state33_2F35CE8D0F063DC4E7A32246BB6D8185LLAC5StateAELLOvp",
+ "mangledName": "$s7LinkKit0A7HandlerC5state33_2F35CE8D0F063DC4E7A32246BB6D8185LLAC5StateAELLOvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "RawDocComment"
- ]
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 4,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "productsNotSupported",
- "printedName": "productsNotSupported",
+ "name": "pendingRedirectUri",
+ "printedName": "pendingRedirectUri",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO20productsNotSupportedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO20productsNotSupportedyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC18pendingRedirectUri33_2F35CE8D0F063DC4E7A32246BB6D8185LL10Foundation3URLVSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC18pendingRedirectUri33_2F35CE8D0F063DC4E7A32246BB6D8185LL10Foundation3URLVSgvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "fixedbinaryorder": 5,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "instantMatchFailed",
- "printedName": "instantMatchFailed",
+ "name": "configuration",
+ "printedName": "configuration",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO18instantMatchFailedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO18instantMatchFailedyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC13configuration33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0A18TokenConfigurationVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC13configuration33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0A18TokenConfigurationVvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "RawDocComment"
- ]
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 6,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "name": "environment",
+ "printedName": "environment",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> (Swift.String) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ItemErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit13ItemErrorCodeO6stringACSS_tcfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC11environment33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA11EnvironmentOvp",
+ "mangledName": "$s7LinkKit0A7HandlerC11environment33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA11EnvironmentOvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Final",
+ "HasStorage",
"AccessControl"
],
- "init_kind": "Designated"
+ "fixedbinaryorder": 7,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "log",
+ "printedName": "log",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit13ItemErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit0A7HandlerC3log33_2F35CE8D0F063DC4E7A32246BB6D8185LL3LogAFVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC3log33_2F35CE8D0F063DC4E7A32246BB6D8185LL3LogAFVvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Final",
+ "HasStorage",
"AccessControl"
],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit13ItemErrorCodeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
+ "fixedbinaryorder": 8,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "insufficientCredentialsString",
- "printedName": "insufficientCredentialsString",
+ "name": "keyValueService",
+ "printedName": "keyValueService",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "KeyValueStoreService",
+ "printedName": "LinkKit.KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC15keyValueService33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA03Keye5StoreF0_pvp",
+ "mangledName": "$s7LinkKit0A7HandlerC15keyValueService33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA03Keye5StoreF0_pvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 9,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "invalidCredentialsString",
- "printedName": "invalidCredentialsString",
+ "name": "session",
+ "printedName": "session",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Workflow.Session?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Session",
+ "printedName": "Workflow.Session",
+ "usr": "s:8Workflow7SessionC"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC7session33_2F35CE8D0F063DC4E7A32246BB6D8185LL8Workflow7SessionCSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC7session33_2F35CE8D0F063DC4E7A32246BB6D8185LL8Workflow7SessionCSgvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "fixedbinaryorder": 10,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "invalidMfaString",
- "printedName": "invalidMfaString",
+ "name": "sdkInfo",
+ "printedName": "sdkInfo",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "SDKInfoProvider",
+ "printedName": "LinkKit.SDKInfoProvider",
+ "usr": "s:7LinkKit15SDKInfoProviderV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO16invalidMfaStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16invalidMfaStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC7sdkInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA15SDKInfoProviderVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC7sdkInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA15SDKInfoProviderVvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 11,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO16invalidMfaStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16invalidMfaStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "invalidSendMethodString",
- "printedName": "invalidSendMethodString",
+ "name": "deviceInfo",
+ "printedName": "deviceInfo",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "DeviceInfoProvider",
+ "printedName": "LinkKit.DeviceInfoProvider",
+ "usr": "s:7LinkKit18DeviceInfoProviderV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC10deviceInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06DeviceE8ProviderVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC10deviceInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06DeviceE8ProviderVvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 12,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "invalidUpdatedUsernameString",
- "printedName": "invalidUpdatedUsernameString",
+ "name": "localeInfo",
+ "printedName": "localeInfo",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LocaleInfoProvider",
+ "printedName": "LinkKit.LocaleInfoProvider",
+ "usr": "s:7LinkKit18LocaleInfoProviderV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC10localeInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06LocaleE8ProviderVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC10localeInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06LocaleE8ProviderVvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 13,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "itemLockedString",
- "printedName": "itemLockedString",
+ "name": "userAgentProvider",
+ "printedName": "userAgentProvider",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkHTTPServiceUserAgentProvider",
+ "printedName": "LinkKit.LinkHTTPServiceUserAgentProvider",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO16itemLockedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16itemLockedStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC17userAgentProvider33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0a15HTTPServiceUsereF0Cvp",
+ "mangledName": "$s7LinkKit0A7HandlerC17userAgentProvider33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0a15HTTPServiceUsereF0Cvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 14,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO16itemLockedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16itemLockedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "itemLoginRequiredString",
- "printedName": "itemLoginRequiredString",
+ "name": "paneViewModelObserver",
+ "printedName": "paneViewModelObserver",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "AppCore.Observer?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Observer",
+ "printedName": "AppCore.Observer",
+ "usr": "s:7AppCore8ObserverC"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC21paneViewModelObserver33_2F35CE8D0F063DC4E7A32246BB6D8185LL7AppCore0G0CSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC21paneViewModelObserver33_2F35CE8D0F063DC4E7A32246BB6D8185LL7AppCore0G0CSgvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 15,
+ "hasStorage": true
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:7LinkKit0A7HandlerC",
+ "mangledName": "$s7LinkKit0A7HandlerC",
+ "moduleName": "LinkKit",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Handler",
+ "printedName": "Handler",
+ "usr": "s:7LinkKit7HandlerP",
+ "mangledName": "$s7LinkKit7HandlerP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ViewName",
+ "printedName": "ViewName",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "acceptTOS",
+ "printedName": "acceptTOS",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO9acceptTOSyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9acceptTOSyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "itemNoErrorString",
- "printedName": "itemNoErrorString",
+ "name": "connected",
+ "printedName": "connected",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD6StringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD6StringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO9connectedyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9connectedyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "itemNotSupportedString",
- "printedName": "itemNotSupportedString",
+ "name": "consent",
+ "printedName": "consent",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO7consentyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO7consentyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "incorrectDepositAmountsString",
- "printedName": "incorrectDepositAmountsString",
+ "name": "credential",
+ "printedName": "credential",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO10credentialyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO10credentialyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "dataTransparency",
+ "printedName": "dataTransparency",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO16dataTransparencyyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO16dataTransparencyyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "userSetupRequiredString",
- "printedName": "userSetupRequiredString",
+ "name": "dataTransparencyConsent",
+ "printedName": "dataTransparencyConsent",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO23dataTransparencyConsentyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO23dataTransparencyConsentyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "documentaryVerification",
+ "printedName": "documentaryVerification",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO23documentaryVerificationyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO23documentaryVerificationyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "mfaNotSupportedString",
- "printedName": "mfaNotSupportedString",
+ "name": "error",
+ "printedName": "error",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO5erroryA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO5erroryA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "exit",
+ "printedName": "exit",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO4exityA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO4exityA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "noAccountsString",
- "printedName": "noAccountsString",
+ "name": "kycCheck",
+ "printedName": "kycCheck",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO16noAccountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16noAccountsStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO8kycCheckyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO8kycCheckyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "loading",
+ "printedName": "loading",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO16noAccountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16noAccountsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO7loadingyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO7loadingyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "noAuthAccountsString",
- "printedName": "noAuthAccountsString",
+ "name": "matchedConsent",
+ "printedName": "matchedConsent",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "noInvestmentAccountsString",
- "printedName": "noInvestmentAccountsString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "noLiabilityAccountsString",
- "printedName": "noLiabilityAccountsString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO14matchedConsentyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO14matchedConsentyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "productNotReadyString",
- "printedName": "productNotReadyString",
+ "name": "matchedCredential",
+ "printedName": "matchedCredential",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO21productNotReadyStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO21productNotReadyStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO21productNotReadyStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO21productNotReadyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "productsNotSupportedString",
- "printedName": "productsNotSupportedString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "instantMatchFailedString",
- "printedName": "instantMatchFailedString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO17matchedCredentialyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO17matchedCredentialyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "matchedMFA",
+ "printedName": "matchedMFA",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKItemErrorCode?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKItemErrorCode",
- "printedName": "LinkKit.PLKItemErrorCode",
- "usr": "c:@E@PLKItemErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvp",
- "mangledName": "$s7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKItemErrorCode?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKItemErrorCode",
- "printedName": "LinkKit.PLKItemErrorCode",
- "usr": "c:@E@PLKItemErrorCode"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvg",
- "mangledName": "$s7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO10matchedMFAyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO10matchedMFAyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit13ItemErrorCodeO",
- "mangledName": "$s7LinkKit13ItemErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
},
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "AuthErrorCode",
- "printedName": "AuthErrorCode",
- "children": [
{
"kind": "Var",
- "name": "productNotReady",
- "printedName": "productNotReady",
+ "name": "mfa",
+ "printedName": "mfa",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AuthErrorCode.Type) -> LinkKit.AuthErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AuthErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -37583,8 +36532,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13AuthErrorCodeO15productNotReadyyA2CmF",
- "mangledName": "$s7LinkKit13AuthErrorCodeO15productNotReadyyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO3mfayA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO3mfayA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -37592,30 +36541,30 @@
},
{
"kind": "Var",
- "name": "verificationExpired",
- "printedName": "verificationExpired",
+ "name": "numbers",
+ "printedName": "numbers",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AuthErrorCode.Type) -> LinkKit.AuthErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AuthErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -37623,8 +36572,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13AuthErrorCodeO19verificationExpiredyA2CmF",
- "mangledName": "$s7LinkKit13AuthErrorCodeO19verificationExpiredyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO7numbersyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO7numbersyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -37632,43 +36581,30 @@
},
{
"kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "name": "numbersSelectInstitution",
+ "printedName": "numbersSelectInstitution",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AuthErrorCode.Type) -> (Swift.String) -> LinkKit.AuthErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.AuthErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AuthErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -37676,295 +36612,196 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13AuthErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit13AuthErrorCodeO7unknownyACSScACmF",
+ "usr": "s:7LinkKit8ViewNameO24numbersSelectInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO24numbersSelectInstitutionyA2CmF",
"moduleName": "LinkKit"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
+ "kind": "Var",
+ "name": "oauth",
+ "printedName": "oauth",
"children": [
{
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13AuthErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit13AuthErrorCodeO6stringACSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13AuthErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit13AuthErrorCodeO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13AuthErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit13AuthErrorCodeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO5oauthyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO5oauthyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "productNotReadyString",
- "printedName": "productNotReadyString",
+ "name": "recaptcha",
+ "printedName": "recaptcha",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13AuthErrorCodeO21productNotReadyStringSSvpZ",
- "mangledName": "$s7LinkKit13AuthErrorCodeO21productNotReadyStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13AuthErrorCodeO21productNotReadyStringSSvgZ",
- "mangledName": "$s7LinkKit13AuthErrorCodeO21productNotReadyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO9recaptchayA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9recaptchayA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "verificationExpiredString",
- "printedName": "verificationExpiredString",
+ "name": "riskCheck",
+ "printedName": "riskCheck",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvpZ",
- "mangledName": "$s7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvgZ",
- "mangledName": "$s7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO9riskCheckyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9riskCheckyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "screening",
+ "printedName": "screening",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKAuthErrorCode?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAuthErrorCode",
- "printedName": "LinkKit.PLKAuthErrorCode",
- "usr": "c:@E@PLKAuthErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvp",
- "mangledName": "$s7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKAuthErrorCode?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAuthErrorCode",
- "printedName": "LinkKit.PLKAuthErrorCode",
- "usr": "c:@E@PLKAuthErrorCode"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvg",
- "mangledName": "$s7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO9screeningyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9screeningyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit13AuthErrorCodeO",
- "mangledName": "$s7LinkKit13AuthErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
},
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "AssetReportErrorCode",
- "printedName": "AssetReportErrorCode",
- "children": [
{
"kind": "Var",
- "name": "productNotEnabled",
- "printedName": "productNotEnabled",
+ "name": "selectAccount",
+ "printedName": "selectAccount",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -37972,8 +36809,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO17productNotEnabledyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO17productNotEnabledyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO13selectAccountyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO13selectAccountyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -37981,30 +36818,30 @@
},
{
"kind": "Var",
- "name": "dataUnavailable",
- "printedName": "dataUnavailable",
+ "name": "selectAuthType",
+ "printedName": "selectAuthType",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38012,8 +36849,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO15dataUnavailableyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO15dataUnavailableyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO14selectAuthTypeyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO14selectAuthTypeyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38021,30 +36858,30 @@
},
{
"kind": "Var",
- "name": "productNotReady",
- "printedName": "productNotReady",
+ "name": "submitPhone",
+ "printedName": "submitPhone",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38052,8 +36889,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO15productNotReadyyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO15productNotReadyyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO11submitPhoneyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO11submitPhoneyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38061,30 +36898,30 @@
},
{
"kind": "Var",
- "name": "assetReportGenerationFailed",
- "printedName": "assetReportGenerationFailed",
+ "name": "verifyPhone",
+ "printedName": "verifyPhone",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38092,8 +36929,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD16GenerationFailedyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD16GenerationFailedyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO11verifyPhoneyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO11verifyPhoneyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38101,30 +36938,30 @@
},
{
"kind": "Var",
- "name": "invalidParent",
- "printedName": "invalidParent",
+ "name": "selectSavedInstitution",
+ "printedName": "selectSavedInstitution",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38132,8 +36969,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO13invalidParentyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO13invalidParentyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO22selectSavedInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO22selectSavedInstitutionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38141,30 +36978,30 @@
},
{
"kind": "Var",
- "name": "insightsNotEnabled",
- "printedName": "insightsNotEnabled",
+ "name": "selectSavedAccount",
+ "printedName": "selectSavedAccount",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38172,8 +37009,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO18insightsNotEnabledyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO18insightsNotEnabledyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO18selectSavedAccountyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO18selectSavedAccountyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38181,30 +37018,30 @@
},
{
"kind": "Var",
- "name": "insightsPreviouslyNotEnabled",
- "printedName": "insightsPreviouslyNotEnabled",
+ "name": "selectBrand",
+ "printedName": "selectBrand",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38212,8 +37049,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO28insightsPreviouslyNotEnabledyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO28insightsPreviouslyNotEnabledyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO11selectBrandyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO11selectBrandyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38221,43 +37058,30 @@
},
{
"kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "name": "selectInstitution",
+ "printedName": "selectInstitution",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> (Swift.String) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.AssetReportErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38265,232 +37089,345 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
+ "usr": "s:7LinkKit8ViewNameO17selectInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO17selectInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selfieCheck",
+ "printedName": "selfieCheck",
"children": [
{
- "kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO6stringACSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO11selfieCheckyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO11selfieCheckyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "uploadDocuments",
+ "printedName": "uploadDocuments",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO11descriptionSSvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO15uploadDocumentsyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO15uploadDocumentsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "submitDocuments",
+ "printedName": "submitDocuments",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO15submitDocumentsyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO15submitDocumentsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "productNotEnabledString",
- "printedName": "productNotEnabledString",
+ "name": "submitDocumentsSuccess",
+ "printedName": "submitDocumentsSuccess",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO22submitDocumentsSuccessyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO22submitDocumentsSuccessyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "submitDocumentsError",
+ "printedName": "submitDocumentsError",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO20submitDocumentsErroryA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO20submitDocumentsErroryA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "dataUnavailableString",
- "printedName": "dataUnavailableString",
+ "name": "verifySMS",
+ "printedName": "verifySMS",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO9verifySMSyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9verifySMSyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> (Swift.String) -> LinkKit.ViewName",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit8ViewNameO7unknownyACSScACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "productNotReadyString",
- "printedName": "productNotReadyString",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvpZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit8ViewNameO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit8ViewNameO4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "assetReportGenerationFailedString",
- "printedName": "assetReportGenerationFailedString",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
{
"kind": "TypeNominal",
"name": "String",
@@ -38498,48 +37435,19 @@
"usr": "s:SS"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvpZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit8ViewNameO8rawValueACSS_tcfc",
+ "mangledName": "$s7LinkKit8ViewNameO8rawValueACSS_tcfc",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "invalidParentString",
- "printedName": "invalidParentString",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
@@ -38549,17 +37457,12 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvpZ",
+ "usr": "s:7LinkKit8ViewNameO11descriptionSSvp",
+ "mangledName": "$s7LinkKit8ViewNameO11descriptionSSvp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -38574,92 +37477,97 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvgZ",
+ "usr": "s:7LinkKit8ViewNameO11descriptionSSvg",
+ "mangledName": "$s7LinkKit8ViewNameO11descriptionSSvg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
- "kind": "Var",
- "name": "insightsNotEnabledString",
- "printedName": "insightsNotEnabledString",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit8ViewNameO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit8ViewNameO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit8ViewNameO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit8ViewNameO2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "insightsPreviouslyNotEnabledString",
- "printedName": "insightsPreviouslyNotEnabledString",
+ "name": "toObjCValue",
+ "printedName": "toObjCValue",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKViewNameValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKViewNameValue",
+ "printedName": "LinkKit.PLKViewNameValue",
+ "usr": "c:@E@PLKViewNameValue"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvpZ",
+ "usr": "s:7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvp",
+ "mangledName": "$s7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvp",
"moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -38668,20 +37576,24 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKViewNameValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKViewNameValue",
+ "printedName": "LinkKit.PLKViewNameValue",
+ "usr": "c:@E@PLKViewNameValue"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvgZ",
+ "usr": "s:7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvg",
+ "mangledName": "$s7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
+ "isFromExtension": true,
"accessorKind": "get"
}
]
@@ -38693,22 +37605,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKAssetReportErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKAssetReportErrorCode",
- "printedName": "LinkKit.PLKAssetReportErrorCode",
- "usr": "c:@E@PLKAssetReportErrorCode"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKViewName",
+ "printedName": "LinkKit.PLKViewName",
+ "usr": "c:objc(cs)PLKViewName"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvp",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvp",
+ "usr": "s:7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvp",
+ "mangledName": "$s7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvp",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessors": [
@@ -38719,22 +37623,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKAssetReportErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKAssetReportErrorCode",
- "printedName": "LinkKit.PLKAssetReportErrorCode",
- "usr": "c:@E@PLKAssetReportErrorCode"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKViewName",
+ "printedName": "LinkKit.PLKViewName",
+ "usr": "c:objc(cs)PLKViewName"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvg",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvg",
+ "usr": "s:7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvg",
+ "mangledName": "$s7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
@@ -38743,20 +37639,14 @@
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit20AssetReportErrorCodeO",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO",
+ "usr": "s:7LinkKit8ViewNameO",
+ "mangledName": "$s7LinkKit8ViewNameO",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
{
"kind": "Conformance",
"name": "CustomStringConvertible",
@@ -38766,164 +37656,65 @@
},
{
"kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "InstitutionErrorCode",
- "printedName": "InstitutionErrorCode",
+ "name": "KeyValueStoreKey",
+ "printedName": "KeyValueStoreKey",
"children": [
{
"kind": "Var",
- "name": "institutionDown",
- "printedName": "institutionDown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO15institutionDownyA2CmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO15institutionDownyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "institutionNotResponding",
- "printedName": "institutionNotResponding",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO24institutionNotRespondingyA2CmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO24institutionNotRespondingyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "institutionNotAvailable",
- "printedName": "institutionNotAvailable",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO23institutionNotAvailableyA2CmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO23institutionNotAvailableyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "institutionNoLongerSupported",
- "printedName": "institutionNoLongerSupported",
+ "name": "linkPersistentID",
+ "printedName": "linkPersistentID",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
+ "printedName": "(LinkKit.KeyValueStoreKey.Type) -> LinkKit.KeyValueStoreKey",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "printedName": "LinkKit.KeyValueStoreKey.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
]
}
@@ -38931,73 +37722,29 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO28institutionNoLongerSupportedyA2CmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO28institutionNoLongerSupportedyA2CmF",
+ "usr": "s:7LinkKit013KeyValueStoreC0O16linkPersistentIDyA2CmF",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O16linkPersistentIDyA2CmF",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "fixedbinaryorder": 0
},
{
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> (Swift.String) -> LinkKit.InstitutionErrorCode",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.KeyValueStoreKey?",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.InstitutionErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- }
- ]
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
@@ -39007,18 +37754,16 @@
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO6stringACSS_tcfc",
+ "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0ACSgSS_tcfc",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0ACSgSS_tcfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
+ "implicit": true,
"init_kind": "Designated"
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "rawValue",
+ "printedName": "rawValue",
"children": [
{
"kind": "TypeNominal",
@@ -39028,12 +37773,10 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0SSvp",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0SSvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -39048,42 +37791,49 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0SSvg",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0SSvg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit013KeyValueStoreC0O",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "enumRawTypeName": "String",
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
- "kind": "Var",
- "name": "institutionDownString",
- "printedName": "institutionDownString",
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvpZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
"children": [
{
"kind": "TypeNominal",
@@ -39091,49 +37841,35 @@
"printedName": "Swift.String",
"usr": "s:SS"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvgZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
},
{
- "kind": "Var",
- "name": "institutionNotRespondingString",
- "printedName": "institutionNotRespondingString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvpZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KeyValueStoreService",
+ "printedName": "KeyValueStoreService",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "string",
+ "printedName": "string(for:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -39142,98 +37878,136 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvgZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP6string3forSSSgAA0cdeC0O_tF",
+ "mangledName": "$s7LinkKit20KeyValueStoreServiceP6string3forSSSgAA0cdeC0O_tF",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.KeyValueStoreService>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "institutionNotAvailableString",
- "printedName": "institutionNotAvailableString",
+ "kind": "Function",
+ "name": "set",
+ "printedName": "set(_:for:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvpZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP3set_3forySS_AA0cdeC0OtF",
+ "mangledName": "$s7LinkKit20KeyValueStoreServiceP3set_3forySS_AA0cdeC0OtF",
"moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.KeyValueStoreService>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP",
+ "mangledName": "$s7LinkKit20KeyValueStoreServiceP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "UserDefaultsService",
+ "printedName": "UserDefaultsService",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(defaults:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvgZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "UserDefaultsService",
+ "printedName": "LinkKit.UserDefaultsService",
+ "usr": "s:7LinkKit19UserDefaultsServiceV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UserDefaults",
+ "printedName": "Foundation.UserDefaults",
+ "hasDefaultArg": true,
+ "usr": "c:objc(cs)NSUserDefaults"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit19UserDefaultsServiceV8defaultsACSo06NSUserD0C_tcfc",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV8defaultsACSo06NSUserD0C_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "institutionNoLongerSupportedString",
- "printedName": "institutionNoLongerSupportedString",
+ "name": "defaults",
+ "printedName": "defaults",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "UserDefaults",
+ "printedName": "Foundation.UserDefaults",
+ "usr": "c:objc(cs)NSUserDefaults"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvpZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvpZ",
+ "usr": "s:7LinkKit19UserDefaultsServiceV8defaults33_A39322CDD144454DFDEA5686E47673A8LLSo06NSUserD0Cvp",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV8defaults33_A39322CDD144454DFDEA5686E47673A8LLSo06NSUserD0Cvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
+ "fixedbinaryorder": 0,
"isLet": true,
- "hasStorage": true,
- "accessors": [
+ "hasStorage": true
+ },
+ {
+ "kind": "Function",
+ "name": "string",
+ "printedName": "string(for:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -39242,103 +38016,68 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvgZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit19UserDefaultsServiceV6string3forSSSgAA013KeyValueStoreH0O_tF",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV6string3forSSSgAA013KeyValueStoreH0O_tF",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "kind": "Function",
+ "name": "set",
+ "printedName": "set(_:for:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInstitutionErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInstitutionErrorCode",
- "printedName": "LinkKit.PLKInstitutionErrorCode",
- "usr": "c:@E@PLKInstitutionErrorCode"
- }
- ],
- "usr": "s:Sq"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvp",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit19UserDefaultsServiceV3set_3forySS_AA013KeyValueStoreH0OtF",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV3set_3forySS_AA013KeyValueStoreH0OtF",
"moduleName": "LinkKit",
"isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInstitutionErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInstitutionErrorCode",
- "printedName": "LinkKit.PLKInstitutionErrorCode",
- "usr": "c:@E@PLKInstitutionErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvg",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit20InstitutionErrorCodeO",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit19UserDefaultsServiceV",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "KeyValueStoreService",
+ "printedName": "KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP",
+ "mangledName": "$s7LinkKit20KeyValueStoreServiceP"
}
]
},
@@ -39351,219 +38090,320 @@
},
{
"kind": "TypeDecl",
- "name": "GithubRelease",
- "printedName": "GithubRelease",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
"children": [
{
- "kind": "Var",
- "name": "htmlURL",
- "printedName": "htmlURL",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV7htmlURLSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV7htmlURLSSvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit17InternalEquatableP2eeoiySbx_xtFZ",
+ "mangledName": "$s7LinkKit17InternalEquatableP2eeoiySbx_xtFZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalEquatable>",
+ "sugared_genericSig": "",
+ "static": true,
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "VerificationStatus",
+ "printedName": "VerificationStatus",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "pendingAutomaticVerification",
+ "printedName": "pendingAutomaticVerification",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.VerificationStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV7htmlURLSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV7htmlURLSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18VerificationStatusO016pendingAutomaticC0yA2CmF",
+ "mangledName": "$s7LinkKit18VerificationStatusO016pendingAutomaticC0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "tagName",
- "printedName": "tagName",
+ "name": "pendingManualVerification",
+ "printedName": "pendingManualVerification",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV7tagNameSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV7tagNameSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.VerificationStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV7tagNameSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV7tagNameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18VerificationStatusO013pendingManualC0yA2CmF",
+ "mangledName": "$s7LinkKit18VerificationStatusO013pendingManualC0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "name",
- "printedName": "name",
+ "name": "manuallyVerified",
+ "printedName": "manuallyVerified",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.VerificationStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV4nameSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV4nameSSvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18VerificationStatusO16manuallyVerifiedyA2CmF",
+ "mangledName": "$s7LinkKit18VerificationStatusO16manuallyVerifiedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
- ],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.VerificationStatus.Type) -> (Swift.String) -> LinkKit.VerificationStatus",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.VerificationStatus",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.VerificationStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV4nameSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV4nameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18VerificationStatusO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit18VerificationStatusO7unknownyACSScACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "draft",
- "printedName": "draft",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV5draftSbvp",
- "mangledName": "$s7LinkKit13GithubReleaseV5draftSbvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit18VerificationStatusO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit18VerificationStatusO4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
+ "AccessControl"
],
- "fixedbinaryorder": 3,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.VerificationStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV5draftSbvg",
- "mangledName": "$s7LinkKit13GithubReleaseV5draftSbvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit18VerificationStatusO8rawValueACSgSS_tcfc",
+ "mangledName": "$s7LinkKit18VerificationStatusO8rawValueACSgSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "prerelease",
- "printedName": "prerelease",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV10prereleaseSbvp",
- "mangledName": "$s7LinkKit13GithubReleaseV10prereleaseSbvp",
+ "usr": "s:7LinkKit18VerificationStatusO11descriptionSSvp",
+ "mangledName": "$s7LinkKit18VerificationStatusO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 4,
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -39572,92 +38412,95 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV10prereleaseSbvg",
- "mangledName": "$s7LinkKit13GithubReleaseV10prereleaseSbvg",
+ "usr": "s:7LinkKit18VerificationStatusO11descriptionSSvg",
+ "mangledName": "$s7LinkKit18VerificationStatusO11descriptionSSvg",
"moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
- "kind": "Var",
- "name": "publishedAt",
- "printedName": "publishedAt",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvp",
- "mangledName": "$s7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit18VerificationStatusO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit18VerificationStatusO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
+ "AccessControl"
],
- "fixedbinaryorder": 5,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvg",
- "mangledName": "$s7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit18VerificationStatusO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit18VerificationStatusO2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "body",
- "printedName": "body",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKVerificationStatus",
+ "printedName": "LinkKit.PLKVerificationStatus",
+ "usr": "c:objc(cs)PLKVerificationStatus"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV4bodySSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV4bodySSvp",
+ "usr": "s:7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvp",
+ "mangledName": "$s7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage"
- ],
- "fixedbinaryorder": 6,
- "isLet": true,
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -39666,366 +38509,498 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKVerificationStatus",
+ "printedName": "LinkKit.PLKVerificationStatus",
+ "usr": "c:objc(cs)PLKVerificationStatus"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV4bodySSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV4bodySSvg",
+ "usr": "s:7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvg",
+ "mangledName": "$s7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvg",
"moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
+ "isFromExtension": true,
"accessorKind": "get"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit18VerificationStatusO",
+ "mangledName": "$s7LinkKit18VerificationStatusO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "AssetReportErrorCode",
+ "printedName": "AssetReportErrorCode",
+ "children": [
{
"kind": "Var",
- "name": "semanticVersion",
- "printedName": "semanticVersion",
+ "name": "productNotEnabled",
+ "printedName": "productNotEnabled",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.SemanticVersion?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvp",
- "mangledName": "$s7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO17productNotEnabledyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO17productNotEnabledyA2CmF",
"moduleName": "LinkKit",
- "accessors": [
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "dataUnavailable",
+ "printedName": "dataUnavailable",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.SemanticVersion?",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvg",
- "mangledName": "$s7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO15dataUnavailableyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO15dataUnavailableyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
- "kind": "TypeDecl",
- "name": "CodingKeys",
- "printedName": "CodingKeys",
+ "kind": "Var",
+ "name": "productNotReady",
+ "printedName": "productNotReady",
"children": [
{
- "kind": "Var",
- "name": "htmlURL",
- "printedName": "htmlURL",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO7htmlURLyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO7htmlURLyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO15productNotReadyyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO15productNotReadyyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "assetReportGenerationFailed",
+ "printedName": "assetReportGenerationFailed",
+ "children": [
{
- "kind": "Var",
- "name": "tagName",
- "printedName": "tagName",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO7tagNameyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO7tagNameyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD16GenerationFailedyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD16GenerationFailedyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidParent",
+ "printedName": "invalidParent",
+ "children": [
{
- "kind": "Var",
- "name": "name",
- "printedName": "name",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO4nameyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO4nameyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 2
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO13invalidParentyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO13invalidParentyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "insightsNotEnabled",
+ "printedName": "insightsNotEnabled",
+ "children": [
{
- "kind": "Var",
- "name": "draft",
- "printedName": "draft",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO5draftyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO5draftyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 3
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO18insightsNotEnabledyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO18insightsNotEnabledyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "insightsPreviouslyNotEnabled",
+ "printedName": "insightsPreviouslyNotEnabled",
+ "children": [
{
- "kind": "Var",
- "name": "prerelease",
- "printedName": "prerelease",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO10prereleaseyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO10prereleaseyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 4
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO28insightsPreviouslyNotEnabledyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO28insightsPreviouslyNotEnabledyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
{
- "kind": "Var",
- "name": "publishedAt",
- "printedName": "publishedAt",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> (Swift.String) -> LinkKit.AssetReportErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
+ "printedName": "(Swift.String) -> LinkKit.AssetReportErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11publishedAtyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11publishedAtyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 5
- },
- {
- "kind": "Var",
- "name": "body",
- "printedName": "body",
- "children": [
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO4bodyyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO4bodyyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 6
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO6stringACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO11descriptionSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.GithubRelease.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "productNotEnabledString",
+ "printedName": "productNotEnabledString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
{
"kind": "TypeNominal",
"name": "String",
@@ -40033,17 +39008,48 @@
"usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueAESgSS_tcfc",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "init_kind": "Designated"
- },
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "dataUnavailableString",
+ "printedName": "dataUnavailableString",
+ "children": [
{
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -40052,37 +39058,48 @@
"usr": "s:SS"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvp",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "productNotReadyString",
+ "printedName": "productNotReadyString",
+ "children": [
{
- "kind": "Var",
- "name": "stringValue",
- "printedName": "stringValue",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -40091,52 +39108,49 @@
"usr": "s:SS"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvp",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "assetReportGenerationFailedString",
+ "printedName": "assetReportGenerationFailedString",
+ "children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringValue:)",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.GithubRelease.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -40144,327 +39158,394 @@
"usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueAESgSS_tcfc",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "init_kind": "Designated"
- },
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidParentString",
+ "printedName": "invalidParentString",
+ "children": [
{
- "kind": "Var",
- "name": "intValue",
- "printedName": "intValue",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvp",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvp",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvg",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "insightsNotEnabledString",
+ "printedName": "insightsNotEnabledString",
+ "children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(intValue:)",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.GithubRelease.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueAESgSi_tcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueAESgSi_tcfc",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "init_kind": "Designated"
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "insightsPreviouslyNotEnabledString",
+ "printedName": "insightsPreviouslyNotEnabledString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO",
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvpZ",
"moduleName": "LinkKit",
- "enumRawTypeName": "String",
- "isEnumExhaustive": true,
- "conformances": [
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
{
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKAssetReportErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKAssetReportErrorCode",
+ "printedName": "LinkKit.PLKAssetReportErrorCode",
+ "usr": "c:@E@PLKAssetReportErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvp",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKAssetReportErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKAssetReportErrorCode",
+ "printedName": "LinkKit.PLKAssetReportErrorCode",
+ "usr": "c:@E@PLKAssetReportErrorCode"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "CodingKey",
- "printedName": "CodingKey",
- "usr": "s:s9CodingKeyP",
- "mangledName": "$ss9CodingKeyP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvg",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "SDKValidationService",
+ "printedName": "SDKValidationService",
+ "children": [
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(htmlURL:tagName:name:draft:prerelease:publishedAt:body:)",
+ "printedName": "init(sdkReleaseLoader:log:)",
"children": [
{
"kind": "TypeNominal",
- "name": "GithubRelease",
- "printedName": "LinkKit.GithubRelease",
- "usr": "s:7LinkKit13GithubReleaseV"
+ "name": "SDKValidationService",
+ "printedName": "LinkKit.SDKValidationService",
+ "usr": "s:7LinkKit20SDKValidationServiceC"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
+ "name": "SDKReleaseLoader",
+ "printedName": "LinkKit.SDKReleaseLoader",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV7htmlURL7tagName4name5draft10prerelease11publishedAt4bodyACSS_S2SS2b10Foundation4DateVSStcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV7htmlURL7tagName4name5draft10prerelease11publishedAt4bodyACSS_S2SS2b10Foundation4DateVSStcfc",
+ "usr": "s:7LinkKit20SDKValidationServiceC16sdkReleaseLoader3logAcA010SDKReleaseG0_p_3LogAGVtcfc",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC16sdkReleaseLoader3logAcA010SDKReleaseG0_p_3LogAGVtcfc",
"moduleName": "LinkKit",
- "implicit": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
"init_kind": "Designated"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Function",
+ "name": "validateIntegration",
+ "printedName": "validateIntegration()",
"children": [
{
"kind": "TypeNominal",
- "name": "GithubRelease",
- "printedName": "LinkKit.GithubRelease",
- "usr": "s:7LinkKit13GithubReleaseV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "name": "Void",
+ "printedName": "()"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV4fromACs7Decoder_p_tKcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit20SDKValidationServiceC19validateIntegrationyyF",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC19validateIntegrationyyF",
"moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
+ "declAttributes": [
+ "Final",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "kind": "Var",
+ "name": "sdkReleaseLoader",
+ "printedName": "sdkReleaseLoader",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "name": "SDKReleaseLoader",
+ "printedName": "LinkKit.SDKReleaseLoader",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20SDKValidationServiceC16sdkReleaseLoader33_DAB7F5C045708C32FAC47CA6EAB369F7LLAA010SDKReleaseG0_pvp",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC16sdkReleaseLoader33_DAB7F5C045708C32FAC47CA6EAB369F7LLAA010SDKReleaseG0_pvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "log",
+ "printedName": "log",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit13GithubReleaseV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit13GithubReleaseV6encode2toys7Encoder_p_tKF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit20SDKValidationServiceC3log33_DAB7F5C045708C32FAC47CA6EAB369F7LL3LogAFVvp",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC3log33_DAB7F5C045708C32FAC47CA6EAB369F7LL3LogAFVvp",
"moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ "isInternal": true,
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true
}
],
- "declKind": "Struct",
- "usr": "s:7LinkKit13GithubReleaseV",
- "mangledName": "$s7LinkKit13GithubReleaseV",
+ "declKind": "Class",
+ "usr": "s:7LinkKit20SDKValidationServiceC",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC",
"moduleName": "LinkKit",
"declAttributes": [
+ "Final",
"AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
]
},
{
@@ -40476,8 +39557,8 @@
},
{
"kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
+ "name": "Log",
+ "printedName": "Log",
"declKind": "Import",
"moduleName": "LinkKit",
"declAttributes": [
@@ -40504,16 +39585,6 @@
"ImplementationOnly"
]
},
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "Import",
"name": "Foundation",
@@ -40521,32 +39592,53 @@
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "LinkHTTPServiceUserAgentProvider",
- "printedName": "LinkHTTPServiceUserAgentProvider",
+ "name": "Constants",
+ "printedName": "Constants",
"children": [
{
"kind": "Var",
- "name": "userAgent",
- "printedName": "userAgent",
+ "name": "linkWebviewFallbackScheme",
+ "printedName": "linkWebviewFallbackScheme",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.Constants.Type) -> LinkKit.Constants",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Constants",
+ "printedName": "LinkKit.Constants",
+ "usr": "s:7LinkKit9ConstantsO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.Constants.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Constants",
+ "printedName": "LinkKit.Constants",
+ "usr": "s:7LinkKit9ConstantsO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9ConstantsO25linkWebviewFallbackSchemeyA2CmF",
+ "mangledName": "$s7LinkKit9ConstantsO25linkWebviewFallbackSchemeyA2CmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
+ },
+ {
+ "kind": "Var",
+ "name": "rawValue",
+ "printedName": "rawValue",
"children": [
{
"kind": "TypeNominal",
@@ -40556,19 +39648,10 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvp",
- "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvp",
+ "usr": "s:7LinkKit9ConstantsO8rawValueSSvp",
+ "mangledName": "$s7LinkKit9ConstantsO8rawValueSSvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -40583,14 +39666,10 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvg",
- "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvg",
+ "usr": "s:7LinkKit9ConstantsO8rawValueSSvg",
+ "mangledName": "$s7LinkKit9ConstantsO8rawValueSSvg",
"moduleName": "LinkKit",
"implicit": true,
- "declAttributes": [
- "Transparent",
- "Final"
- ],
"accessorKind": "get"
}
]
@@ -40598,350 +39677,261 @@
{
"kind": "Constructor",
"name": "init",
- "printedName": "init()",
+ "printedName": "init(rawValue:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkHTTPServiceUserAgentProvider",
- "printedName": "LinkKit.LinkHTTPServiceUserAgentProvider",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC"
+ "name": "Optional",
+ "printedName": "LinkKit.Constants?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Constants",
+ "printedName": "LinkKit.Constants",
+ "usr": "s:7LinkKit9ConstantsO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderCACycfc",
- "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderCACycfc",
+ "usr": "s:7LinkKit9ConstantsO8rawValueACSgSS_tcfc",
+ "mangledName": "$s7LinkKit9ConstantsO8rawValueACSgSS_tcfc",
"moduleName": "LinkKit",
"implicit": true,
"init_kind": "Designated"
}
],
- "declKind": "Class",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC",
- "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit9ConstantsO",
+ "mangledName": "$s7LinkKit9ConstantsO",
"moduleName": "LinkKit",
"declAttributes": [
- "Final",
"AccessControl"
],
+ "enumRawTypeName": "String",
+ "isEnumExhaustive": true,
"conformances": [
{
"kind": "Conformance",
- "name": "HTTPServiceUserAgentProviding",
- "printedName": "HTTPServiceUserAgentProviding",
- "usr": "s:7AppCore29HTTPServiceUserAgentProvidingP",
- "mangledName": "$s7AppCore29HTTPServiceUserAgentProvidingP"
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
{
"kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
+ "name": "Foundation",
+ "printedName": "Foundation",
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "EmbeddedSearchAndSelectView",
- "printedName": "EmbeddedSearchAndSelectView",
+ "name": "PLKPlaid",
+ "printedName": "PLKPlaid",
"children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(viewModel:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchAndSelectView",
- "printedName": "LinkKit.EmbeddedSearchAndSelectView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView"
- },
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchViewModel",
- "printedName": "Workflow.EmbeddedSearchViewModel",
- "usr": "s:8Workflow23EmbeddedSearchViewModelC"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit27EmbeddedSearchAndSelectViewC9viewModelAC8Workflow0cdgI0C_tcfc",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC9viewModelAC8Workflow0cdgI0C_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
{
"kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:didSelectItemAt:)",
+ "name": "createWithLinkTokenConfiguration",
+ "printedName": "createWithLinkTokenConfiguration(_:error:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKHandler?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKHandler",
+ "printedName": "LinkKit.PLKHandler",
+ "usr": "c:objc(pl)PLKHandler"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
+ "name": "PLKLinkTokenConfiguration",
+ "printedName": "LinkKit.PLKLinkTokenConfiguration",
+ "usr": "c:objc(cs)PLKLinkTokenConfiguration"
},
{
"kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "Optional",
+ "printedName": "Swift.AutoreleasingUnsafeMutablePointer?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AutoreleasingUnsafeMutablePointer",
+ "printedName": "Swift.AutoreleasingUnsafeMutablePointer",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSError?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "usr": "s:SA"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didSelectItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_03didF6ItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)createWithLinkTokenConfiguration:error:",
+ "mangledName": "$s7LinkKit8PLKPlaidC010createWithA18TokenConfiguration_5errorSo10PLKHandler_pSgSo07PLKLinkfG0C_SAySo7NSErrorCSgGSgtFZ",
"moduleName": "LinkKit",
- "objc_name": "collectionView:didSelectItemAtIndexPath:",
+ "static": true,
"declAttributes": [
"Final",
- "ObjC",
- "Custom",
- "AccessControl"
+ "AccessControl",
+ "ObjC"
],
- "isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:didHighlightItemAt:)",
+ "kind": "Var",
+ "name": "sdkVersion",
+ "printedName": "sdkVersion",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didHighlightItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_18didHighlightItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
+ "declKind": "Var",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cpy)sdkVersion",
+ "mangledName": "$s7LinkKit8PLKPlaidC10sdkVersionSSvpZ",
"moduleName": "LinkKit",
- "objc_name": "collectionView:didHighlightItemAtIndexPath:",
+ "static": true,
"declAttributes": [
"Final",
+ "AccessControl",
"ObjC",
- "Custom",
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:didUnhighlightItemAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didUnhighlightItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_20didUnhighlightItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
- "moduleName": "LinkKit",
- "objc_name": "collectionView:didUnhighlightItemAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:numberOfItemsInSection:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:numberOfItemsInSection:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_22numberOfItemsInSectionSiSo012UICollectionG0C_SitF",
- "moduleName": "LinkKit",
- "objc_name": "collectionView:numberOfItemsInSection:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
+ "RawDocComment"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:cellForItemAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UICollectionViewCell",
- "printedName": "UIKit.UICollectionViewCell",
- "usr": "c:objc(cs)UICollectionViewCell"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
- },
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)sdkVersion",
+ "mangledName": "$s7LinkKit8PLKPlaidC10sdkVersionSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:cellForItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_13cellForItemAtSo012UICollectionG4CellCSo0mG0C_10Foundation9IndexPathVtF",
- "moduleName": "LinkKit",
- "objc_name": "collectionView:cellForItemAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:layout:sizeForItemAt:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionViewLayout",
- "printedName": "UIKit.UICollectionViewLayout",
- "usr": "c:objc(cs)UICollectionViewLayout"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "PLKPlaid",
+ "printedName": "LinkKit.PLKPlaid",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:layout:sizeForItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_6layout13sizeForItemAtSo6CGSizeVSo012UICollectionG0C_So0oG6LayoutC10Foundation9IndexPathVtF",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(im)init",
+ "mangledName": "$s7LinkKit8PLKPlaidCACycfc",
"moduleName": "LinkKit",
- "objc_name": "collectionView:layout:sizeForItemAtIndexPath:",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
"declAttributes": [
- "Final",
+ "Dynamic",
"ObjC",
- "Custom",
- "AccessControl"
+ "Override"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "init_kind": "Designated"
}
],
"declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid",
+ "mangledName": "$s7LinkKit8PLKPlaidC",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
- "Custom",
- "Final",
"AccessControl",
- "ObjC"
+ "ObjC",
+ "RawDocComment"
],
- "superclassUsr": "c:objc(cs)UIView",
- "hasMissingDesignatedInitializers": true,
+ "superclassUsr": "c:objc(cs)NSObject",
"inheritsConvenienceInitializers": true,
"superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
"ObjectiveC.NSObject"
],
"conformances": [
@@ -40993,314 +39983,383 @@
"printedName": "CustomDebugStringConvertible",
"usr": "s:s28CustomDebugStringConvertibleP",
"mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "LayoutArea",
- "printedName": "LayoutArea",
- "usr": "s:9AppCoreUI10LayoutAreaP",
- "mangledName": "$s9AppCoreUI10LayoutAreaP"
}
]
},
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "TodoPaneViewController",
- "printedName": "TodoPaneViewController",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "PLKPlaidConfigurationError",
"children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
+ "kind": "Var",
+ "name": "malformedClientID",
+ "printedName": "malformedClientID",
"children": [
{
- "kind": "TypeNominal",
- "name": "TodoPaneViewController",
- "printedName": "LinkKit.TodoPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "TODOViewModel",
- "printedName": "Workflow.TODOViewModel",
- "usr": "s:8Workflow13TODOViewModelC"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit22TodoPaneViewControllerC4withAC8Workflow13TODOViewModelC_tcfc",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC4withAC8Workflow13TODOViewModelC_tcfc",
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorMalformedClientID",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO17malformedClientIDyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
+ "ObjC"
],
- "init_kind": "Designated"
+ "fixedbinaryorder": 0
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Var",
+ "name": "missingAuthorization",
+ "printedName": "missingAuthorization",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.TodoPaneViewController?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
"kind": "TypeNominal",
- "name": "TodoPaneViewController",
- "printedName": "LinkKit.TodoPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorMissingAuthorization",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO20missingAuthorizationyA2CmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
+ "ObjC"
],
- "init_kind": "Designated"
+ "fixedbinaryorder": 1
},
{
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "kind": "Var",
+ "name": "noProduct",
+ "printedName": "noProduct",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC11viewDidLoadyyF",
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorNoProduct",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO9noProductyA2CmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
+ "ObjC"
],
- "funcSelfKind": "NonMutating"
+ "fixedbinaryorder": 2
},
{
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
+ "kind": "Var",
+ "name": "invalidOptionValue",
+ "printedName": "invalidOptionValue",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC13viewDidAppearyySbF",
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidOptionValue",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO18invalidOptionValueyA2CmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
+ "ObjC"
],
- "funcSelfKind": "NonMutating"
+ "fixedbinaryorder": 3
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "invalidOptionCombination",
+ "printedName": "invalidOptionCombination",
"children": [
{
- "kind": "TypeNominal",
- "name": "TODOViewModel",
- "printedName": "Workflow.TODOViewModel",
- "usr": "s:8Workflow13TODOViewModelC"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit22TodoPaneViewControllerC9viewModel33_F224A9F6BC8F4F117F334109F7CC7D5DLL8Workflow08TODOViewH0Cvp",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC9viewModel33_F224A9F6BC8F4F117F334109F7CC7D5DLL8Workflow08TODOViewH0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidOptionCombination",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO24invalidOptionCombinationyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "fixedbinaryorder": 4
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
+ "kind": "Var",
+ "name": "invalidEnvironmentValue",
+ "printedName": "invalidEnvironmentValue",
"children": [
{
- "kind": "TypeNominal",
- "name": "TodoPaneViewController",
- "printedName": "LinkKit.TodoPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
- },
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidEnvironmentValue",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO23invalidEnvironmentValueyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "fixedbinaryorder": 5
+ },
+ {
+ "kind": "Var",
+ "name": "invalidToken",
+ "printedName": "invalidToken",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidToken",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO12invalidTokenyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "fixedbinaryorder": 6
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "printedName": "LinkKit.PLKPlaidConfigurationError?",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
],
"usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueACSgSi_tcfc",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueACSgSi_tcfc",
"moduleName": "LinkKit",
- "overriding": true,
"implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
"init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "rawValue",
+ "printedName": "rawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivp",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivg",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
}
],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC",
+ "declKind": "Enum",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
"ObjC"
],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
+ "enumRawTypeName": "Int",
+ "isEnumExhaustive": true,
"conformances": [
{
"kind": "Conformance",
@@ -41318,38 +40377,25 @@
},
{
"kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
},
{
"kind": "Conformance",
@@ -41360,49 +40406,57 @@
}
]
},
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
{
"kind": "TypeDecl",
- "name": "ReactNativeLinkKit",
- "printedName": "ReactNativeLinkKit",
+ "name": "PLKHandlerShim",
+ "printedName": "PLKHandlerShim",
"children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(handler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKHandlerShim",
+ "printedName": "LinkKit.PLKHandlerShim",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit14PLKHandlerShimC7handlerAcA7Handler_p_tcfc",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAcA7Handler_p_tcfc",
+ "moduleName": "LinkKit",
+ "init_kind": "Designated"
+ },
{
"kind": "Var",
- "name": "sdkVersion",
- "printedName": "sdkVersion",
+ "name": "handler",
+ "printedName": "handler",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvpZ",
- "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvpZ",
+ "usr": "s:7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvp",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final",
+ "HasStorage"
],
+ "fixedbinaryorder": 0,
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -41412,34 +40466,37 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvgZ",
- "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvgZ",
+ "usr": "s:7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvg",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
"declAttributes": [
- "Transparent"
+ "Final"
],
"accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(presentationHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
"children": [
{
"kind": "TypeNominal",
@@ -41448,371 +40505,198 @@
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvsZ",
- "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvsZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "set"
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit14PLKHandlerShimC4open19presentationHandleryySo16UIViewControllerCc_tF",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandleryySo16UIViewControllerCc_tF",
+ "moduleName": "LinkKit",
+ "isOpen": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(presentationHandler:dismissalHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
"children": [
{
"kind": "TypeNominal",
"name": "Void",
"printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvMZ",
- "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvMZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "_modify"
+ ]
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:dismissalHandler:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandler09dismissalG0yySo16UIViewControllerCc_yAHctF",
+ "moduleName": "LinkKit",
+ "isOpen": true,
+ "objc_name": "openWithPresentationHandler:dismissalHandler:",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(withContextViewController:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ReactNativeLinkKit",
- "printedName": "LinkKit.ReactNativeLinkKit",
- "usr": "s:7LinkKit011ReactNativeaB0V"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit011ReactNativeaB0VACycfc",
- "mangledName": "$s7LinkKit011ReactNativeaB0VACycfc",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithContextViewController:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC4open25withContextViewControllerySo06UIViewI0C_tF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit011ReactNativeaB0V",
- "mangledName": "$s7LinkKit011ReactNativeaB0V",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "SafariServices",
- "printedName": "SafariServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AuthenticationServices",
- "printedName": "AuthenticationServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "LinkOOPWebViewController",
- "printedName": "LinkOOPWebViewController",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(ViewModel:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkOOPWebViewController",
- "printedName": "LinkKit.LinkOOPWebViewController",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "OutOfProcessWebViewModel",
- "printedName": "Workflow.OutOfProcessWebViewModel",
- "usr": "s:8Workflow24OutOfProcessWebViewModelC"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A20OOPWebViewControllerC0D5ModelAC8Workflow015OutOfProcessWebdF0C_tcfc",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC0D5ModelAC8Workflow015OutOfProcessWebdF0C_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
+ "isOpen": true,
+ "objc_name": "openWithContextViewController:",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
{
"kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
+ "name": "createEmbeddedView",
+ "printedName": "createEmbeddedView(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
],
"declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC13viewDidAppearyySbF",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)createEmbeddedView:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC18createEmbeddedViewySo6UIViewCSo0H10ControllerCF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
+ "isOpen": true,
+ "objc_name": "createEmbeddedView:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override"
+ "ObjC"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC11viewDidLoadyyF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "createEmbeddedView",
+ "printedName": "createEmbeddedView(_:dismissalHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "OutOfProcessWebViewModel",
- "printedName": "Workflow.OutOfProcessWebViewModel",
- "usr": "s:8Workflow24OutOfProcessWebViewModelC"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A20OOPWebViewControllerC9viewModel33_511DB72405631A29D0102CBAA022739ALL8Workflow015OutOfProcessWebdG0Cvp",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC9viewModel33_511DB72405631A29D0102CBAA022739ALL8Workflow015OutOfProcessWebdG0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "webAuthenticationSession",
- "printedName": "webAuthenticationSession",
- "children": [
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
+ },
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A20OOPWebViewControllerC24webAuthenticationSession33_511DB72405631A29D0102CBAA022739ALLypSgvp",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC24webAuthenticationSession33_511DB72405631A29D0102CBAA022739ALLypSgvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 1,
- "hasStorage": true
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkOOPWebViewController",
- "printedName": "LinkKit.LinkOOPWebViewController",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
+ "name": "Void",
+ "printedName": "()"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
- ],
- "usr": "s:Sq"
+ ]
},
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)createEmbeddedView:dismissalHandler:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC18createEmbeddedView_16dismissalHandlerSo6UIViewCySo0J10ControllerCc_yAIctF",
"moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
+ "isOpen": true,
+ "objc_name": "createEmbeddedView:dismissalHandler:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
+ "ObjC"
],
- "init_kind": "Designated"
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "open",
- "printedName": "open(url:popupBehavior:)",
+ "name": "resume",
+ "printedName": "resume(afterTermination:)",
"children": [
{
"kind": "TypeNominal",
@@ -41824,83 +40708,59 @@
"name": "URL",
"printedName": "Foundation.URL",
"usr": "s:10Foundation3URLV"
- },
- {
- "kind": "TypeNominal",
- "name": "Link_Workflow_Nodes_Panes_WebviewFallbackIOSPopupBehavior",
- "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_WebviewFallbackIOSPopupBehavior",
- "usr": "s:13WorkflowProto05Link_A44_Nodes_Panes_WebviewFallbackIOSPopupBehaviorO"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A20OOPWebViewControllerC4open3url13popupBehaviory10Foundation3URLV_13WorkflowProto0a1_l36_Nodes_Panes_WebviewFallbackIOSPopupI0OtF",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC4open3url13popupBehaviory10Foundation3URLV_13WorkflowProto0a1_l36_Nodes_Panes_WebviewFallbackIOSPopupI0OtF",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)resumeAfterTermination:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC6resume16afterTerminationy10Foundation3URLV_tF",
"moduleName": "LinkKit",
+ "isOpen": true,
+ "objc_name": "resumeAfterTermination:",
"declAttributes": [
- "Final",
- "Custom"
+ "ObjC"
],
- "isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
- "kind": "Function",
- "name": "presentationAnchor",
- "printedName": "presentationAnchor(for:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "UIWindow",
- "printedName": "UIKit.UIWindow",
- "usr": "c:objc(cs)UIWindow"
- },
- {
- "kind": "TypeNominal",
- "name": "ASWebAuthenticationSession",
- "printedName": "AuthenticationServices.ASWebAuthenticationSession",
- "usr": "c:objc(cs)ASWebAuthenticationSession"
+ "name": "PLKHandlerShim",
+ "printedName": "LinkKit.PLKHandlerShim",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)LinkOOPWebViewController(im)presentationAnchorForWebAuthenticationSession:",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)init",
+ "mangledName": "$s7LinkKit14PLKHandlerShimCACycfc",
"moduleName": "LinkKit",
- "objc_name": "presentationAnchorForWebAuthenticationSession:",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
"declAttributes": [
- "Final",
+ "Dynamic",
"ObjC",
- "Custom",
- "AccessControl",
- "RawDocComment"
+ "Override"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "init_kind": "Designated"
}
],
"declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
"ObjC"
],
- "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassUsr": "c:objc(cs)NSObject",
"superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
"ObjectiveC.NSObject"
],
"conformances": [
- {
- "kind": "Conformance",
- "name": "OutOfProcessWebViewModelDelegate",
- "printedName": "OutOfProcessWebViewModelDelegate",
- "usr": "s:8Workflow32OutOfProcessWebViewModelDelegateP",
- "mangledName": "$s8Workflow32OutOfProcessWebViewModelDelegateP"
- },
{
"kind": "Conformance",
"name": "Equatable",
@@ -41949,107 +40809,53 @@
"printedName": "CustomDebugStringConvertible",
"usr": "s:s28CustomDebugStringConvertibleP",
"mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
}
]
},
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "Token",
- "printedName": "Token",
+ "name": "ExitErrorRawCode",
+ "printedName": "ExitErrorRawCode",
"children": [
{
"kind": "Var",
- "name": "publicKey",
- "printedName": "publicKey",
+ "name": "int",
+ "printedName": "int",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.Token.Type) -> (LinkKit.LinkPublicKeyConfiguration.Token) -> LinkKit.Token",
+ "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.Int) -> LinkKit.ExitErrorRawCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token) -> LinkKit.Token",
+ "printedName": "(Swift.Int) -> LinkKit.ExitErrorRawCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
},
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.Token.Type",
+ "printedName": "LinkKit.ExitErrorRawCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
}
]
}
@@ -42057,31 +40863,31 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit5TokenO9publicKeyyAcA0a6PublicE13ConfigurationVABOcACmF",
- "mangledName": "$s7LinkKit5TokenO9publicKeyyAcA0a6PublicE13ConfigurationVABOcACmF",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO3intyACSicACmF",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO3intyACSicACmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 0
},
{
"kind": "Var",
- "name": "link",
- "printedName": "link",
+ "name": "string",
+ "printedName": "string",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.Token.Type) -> (Swift.String) -> LinkKit.Token",
+ "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.String) -> LinkKit.ExitErrorRawCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String) -> LinkKit.Token",
+ "printedName": "(Swift.String) -> LinkKit.ExitErrorRawCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
},
{
"kind": "TypeNominal",
@@ -42094,13 +40900,13 @@
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.Token.Type",
+ "printedName": "LinkKit.ExitErrorRawCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
}
]
}
@@ -42108,65 +40914,63 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit5TokenO4linkyACSScACmF",
- "mangledName": "$s7LinkKit5TokenO4linkyACSScACmF",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO6stringyACSScACmF",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO6stringyACSScACmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 1
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit5TokenO",
- "mangledName": "$s7LinkKit5TokenO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "isEnumExhaustive": true
- },
- {
- "kind": "TypeDecl",
- "name": "OAuthMode",
- "printedName": "OAuthMode",
- "children": [
+ },
{
"kind": "Var",
- "name": "linkPublicKey",
- "printedName": "linkPublicKey",
+ "name": "unknownTypeAndCode",
+ "printedName": "unknownTypeAndCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.OAuthMode.Type) -> (LinkKit.OAuthNonceConfiguration) -> LinkKit.OAuthMode",
+ "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.String, Swift.String) -> LinkKit.ExitErrorRawCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.OAuthNonceConfiguration) -> LinkKit.OAuthMode",
+ "printedName": "(Swift.String, Swift.String) -> LinkKit.ExitErrorRawCode",
"children": [
{
"kind": "TypeNominal",
- "name": "OAuthMode",
- "printedName": "LinkKit.OAuthMode",
- "usr": "s:7LinkKit9OAuthModeO"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
},
{
"kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
+ "name": "Tuple",
+ "printedName": "(type: Swift.String, code: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.OAuthMode.Type",
+ "printedName": "LinkKit.ExitErrorRawCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "OAuthMode",
- "printedName": "LinkKit.OAuthMode",
- "usr": "s:7LinkKit9OAuthModeO"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
}
]
}
@@ -42174,87 +40978,101 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9OAuthModeO13linkPublicKeyyAcA0C18NonceConfigurationVcACmF",
- "mangledName": "$s7LinkKit9OAuthModeO13linkPublicKeyyAcA0C18NonceConfigurationVcACmF",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO014unknownTypeAndF0yACSS_SStcACmF",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO014unknownTypeAndF0yACSS_SStcACmF",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ],
- "fixedbinaryorder": 0
+ "fixedbinaryorder": 2
},
{
- "kind": "Var",
- "name": "redirectUriMode",
- "printedName": "redirectUriMode",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.OAuthMode.Type) -> (Foundation.URL) -> LinkKit.OAuthMode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Foundation.URL) -> LinkKit.OAuthMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthMode",
- "printedName": "LinkKit.OAuthMode",
- "usr": "s:7LinkKit9OAuthModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.OAuthMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthMode",
- "printedName": "LinkKit.OAuthMode",
- "usr": "s:7LinkKit9OAuthModeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9OAuthModeO011redirectUriD0yAC10Foundation3URLVcACmF",
- "mangledName": "$s7LinkKit9OAuthModeO011redirectUriD0yAC10Foundation3URLVcACmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ],
- "fixedbinaryorder": 1
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO",
+ "moduleName": "LinkKit",
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Account",
+ "printedName": "Account",
+ "children": [
{
"kind": "Var",
- "name": "redirectUri",
- "printedName": "redirectUri",
+ "name": "id",
+ "printedName": "id",
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9OAuthModeO11redirectUri10Foundation3URLVvp",
- "mangledName": "$s7LinkKit9OAuthModeO11redirectUri10Foundation3URLVvp",
+ "usr": "s:7LinkKit7AccountV2idSSvp",
+ "mangledName": "$s7LinkKit7AccountV2idSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -42263,47 +41081,43 @@
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9OAuthModeO11redirectUri10Foundation3URLVvg",
- "mangledName": "$s7LinkKit9OAuthModeO11redirectUri10Foundation3URLVvg",
+ "usr": "s:7LinkKit7AccountV2idSSvg",
+ "mangledName": "$s7LinkKit7AccountV2idSSvg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "oauthStateID",
- "printedName": "oauthStateID",
+ "name": "name",
+ "printedName": "name",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9OAuthModeO12oauthStateIDSSSgvp",
- "mangledName": "$s7LinkKit9OAuthModeO12oauthStateIDSSSgvp",
+ "usr": "s:7LinkKit7AccountV4nameSSvp",
+ "mangledName": "$s7LinkKit7AccountV4nameSSvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -42312,31 +41126,24 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9OAuthModeO12oauthStateIDSSSgvg",
- "mangledName": "$s7LinkKit9OAuthModeO12oauthStateIDSSSgvg",
+ "usr": "s:7LinkKit7AccountV4nameSSvg",
+ "mangledName": "$s7LinkKit7AccountV4nameSSvg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
},
{
- "kind": "Function",
- "name": "oauthStateID",
- "printedName": "oauthStateID(from:)",
+ "kind": "Var",
+ "name": "mask",
+ "printedName": "mask",
"children": [
{
"kind": "TypeNominal",
@@ -42351,315 +41158,72 @@
}
],
"usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9OAuthModeO12oauthStateID4fromSSSg10Foundation3URLV_tFZ",
- "mangledName": "$s7LinkKit9OAuthModeO12oauthStateID4fromSSSg10Foundation3URLV_tFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit9OAuthModeO",
- "mangledName": "$s7LinkKit9OAuthModeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isEnumExhaustive": true
- },
- {
- "kind": "TypeDecl",
- "name": "Configuration",
- "printedName": "Configuration",
- "children": [
- {
- "kind": "Var",
- "name": "linkPublicKey",
- "printedName": "linkPublicKey",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Configuration.Type) -> (LinkKit.LinkPublicKeyConfiguration) -> LinkKit.Configuration",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration) -> LinkKit.Configuration",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Configuration.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ConfigurationO13linkPublicKeyyAcA0aefC0VcACmF",
- "mangledName": "$s7LinkKit13ConfigurationO13linkPublicKeyyAcA0aefC0VcACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "linkToken",
- "printedName": "linkToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Configuration.Type) -> (LinkKit.LinkTokenConfiguration, LinkKit.Environment) -> LinkKit.Configuration",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkTokenConfiguration, LinkKit.Environment) -> LinkKit.Configuration",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(LinkKit.LinkTokenConfiguration, LinkKit.Environment)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Configuration.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ConfigurationO9linkTokenyAcA0aeC0V_AA11EnvironmentOtcACmF",
- "mangledName": "$s7LinkKit13ConfigurationO9linkTokenyAcA0aeC0V_AA11EnvironmentOtcACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "onEvent",
- "printedName": "onEvent",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- }
- ]
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO7onEventyyAA0aE0Vcvp",
- "mangledName": "$s7LinkKit13ConfigurationO7onEventyyAA0aE0Vcvp",
+ "usr": "s:7LinkKit7AccountV4maskSSSgvp",
+ "mangledName": "$s7LinkKit7AccountV4maskSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
"name": "Get",
"printedName": "Get()",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO7onEventyyAA0aE0Vcvg",
- "mangledName": "$s7LinkKit13ConfigurationO7onEventyyAA0aE0Vcvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "onExit",
- "printedName": "onExit",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
{
"kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- }
- ]
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO6onExityyAA0aE0Vcvp",
- "mangledName": "$s7LinkKit13ConfigurationO6onExityyAA0aE0Vcvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO6onExityyAA0aE0Vcvg",
- "mangledName": "$s7LinkKit13ConfigurationO6onExityyAA0aE0Vcvg",
+ "usr": "s:7LinkKit7AccountV4maskSSSgvg",
+ "mangledName": "$s7LinkKit7AccountV4maskSSSgvg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "onSuccess",
- "printedName": "onSuccess",
+ "name": "subtype",
+ "printedName": "subtype",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "AccountSubtype",
+ "printedName": "LinkKit.AccountSubtype",
+ "usr": "s:7LinkKit14AccountSubtypeO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO9onSuccessyyAA0aE0Vcvp",
- "mangledName": "$s7LinkKit13ConfigurationO9onSuccessyyAA0aE0Vcvp",
+ "usr": "s:7LinkKit7AccountV7subtypeAA0C7SubtypeOvp",
+ "mangledName": "$s7LinkKit7AccountV7subtypeAA0C7SubtypeOvp",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -42667,91 +41231,52 @@
"printedName": "Get()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "AccountSubtype",
+ "printedName": "LinkKit.AccountSubtype",
+ "usr": "s:7LinkKit14AccountSubtypeO"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO9onSuccessyyAA0aE0Vcvg",
- "mangledName": "$s7LinkKit13ConfigurationO9onSuccessyyAA0aE0Vcvg",
+ "usr": "s:7LinkKit7AccountV7subtypeAA0C7SubtypeOvg",
+ "mangledName": "$s7LinkKit7AccountV7subtypeAA0C7SubtypeOvg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "isLinkUIPresentationImmediate",
- "printedName": "isLinkUIPresentationImmediate",
+ "name": "verificationStatus",
+ "printedName": "verificationStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO02isA23UIPresentationImmediateSbvp",
- "mangledName": "$s7LinkKit13ConfigurationO02isA23UIPresentationImmediateSbvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Optional",
+ "printedName": "LinkKit.VerificationStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO02isA23UIPresentationImmediateSbvg",
- "mangledName": "$s7LinkKit13ConfigurationO02isA23UIPresentationImmediateSbvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "environment",
- "printedName": "environment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO11environmentAA11EnvironmentOvp",
- "mangledName": "$s7LinkKit13ConfigurationO11environmentAA11EnvironmentOvp",
+ "usr": "s:7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvp",
+ "mangledName": "$s7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvp",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -42760,28 +41285,38 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "Optional",
+ "printedName": "LinkKit.VerificationStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO11environmentAA11EnvironmentOvg",
- "mangledName": "$s7LinkKit13ConfigurationO11environmentAA11EnvironmentOvg",
+ "usr": "s:7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvg",
+ "mangledName": "$s7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
},
{
- "kind": "Function",
- "name": "loadSessionConfiguration",
- "printedName": "loadSessionConfiguration(_:_:_:_:_:_:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(id:name:mask:subtype:verificationStatus:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
},
{
"kind": "TypeNominal",
@@ -42797,92 +41332,321 @@
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "AccountSubtype",
+ "printedName": "LinkKit.AccountSubtype",
+ "usr": "s:7LinkKit14AccountSubtypeO"
},
{
"kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Token, WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration) -> ()",
+ "name": "Optional",
+ "printedName": "LinkKit.VerificationStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(LinkKit.Token, WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "OneOf_Configuration",
- "printedName": "WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration",
- "usr": "s:13WorkflowProto09Link_Api_cA12StartRequestV19OneOf_ConfigurationO"
- }
- ]
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
}
- ]
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit13ConfigurationO011loadSessionC0yySS_S2SSb3LogAEVyAA5TokenO_13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_C0OtctF",
- "mangledName": "$s7LinkKit13ConfigurationO011loadSessionC0yySS_S2SSb3LogAEVyAA5TokenO_13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_C0OtctF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit7AccountV2id4name4mask7subtype18verificationStatusACSS_S2SSgAA0C7SubtypeOAA012VerificationI0OSgtcfc",
+ "mangledName": "$s7LinkKit7AccountV2id4name4mask7subtype18verificationStatusACSS_S2SSgAA0C7SubtypeOAA012VerificationI0OSgtcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit7AccountV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit7AccountV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit7AccountV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit7AccountV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
],
+ "declKind": "Func",
+ "usr": "s:7LinkKit7AccountV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit7AccountV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
"funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKAccount",
+ "printedName": "LinkKit.PLKAccount",
+ "usr": "c:objc(cs)PLKAccount"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit7AccountV6toObjCSo10PLKAccountCvp",
+ "mangledName": "$s7LinkKit7AccountV6toObjCSo10PLKAccountCvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKAccount",
+ "printedName": "LinkKit.PLKAccount",
+ "usr": "c:objc(cs)PLKAccount"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7AccountV6toObjCSo10PLKAccountCvg",
+ "mangledName": "$s7LinkKit7AccountV6toObjCSo10PLKAccountCvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit13ConfigurationO",
- "mangledName": "$s7LinkKit13ConfigurationO",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit7AccountV",
+ "mangledName": "$s7LinkKit7AccountV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
"RawDocComment"
],
- "isEnumExhaustive": true
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
},
{
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
+ "kind": "TypeDecl",
+ "name": "InternalExpressibleByStringLiteral",
+ "printedName": "InternalExpressibleByStringLiteral",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(stringLiteral:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP06stringG0xSS_tcfc",
+ "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP06stringG0xSS_tcfc",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalExpressibleByStringLiteral>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP",
+ "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InternalStringRepresentable",
+ "printedName": "InternalStringRepresentable",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit27InternalStringRepresentablePAAE6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit27InternalStringRepresentablePAAE6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalStringRepresentable>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit27InternalStringRepresentableP",
+ "mangledName": "$s7LinkKit27InternalStringRepresentableP",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 : LinkKit.InternalExpressibleByStringLiteral, τ_0_0 : Swift.CustomStringConvertible>",
+ "sugared_genericSig": "",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalExpressibleByStringLiteral",
+ "printedName": "InternalExpressibleByStringLiteral",
+ "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP",
+ "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP"
+ }
+ ]
},
{
"kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
+ "name": "AppCore",
+ "printedName": "AppCore",
"declKind": "Import",
- "moduleName": "LinkKit"
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
},
{
"kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
"declKind": "Import",
"moduleName": "LinkKit",
"declAttributes": [
@@ -42891,8 +41655,8 @@
},
{
"kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
+ "name": "Log",
+ "printedName": "Log",
"declKind": "Import",
"moduleName": "LinkKit",
"declAttributes": [
@@ -42916,4722 +41680,433 @@
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "LoadingPaneViewController",
- "printedName": "LoadingPaneViewController",
+ "name": "Component",
+ "printedName": "Component",
"children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
+ "kind": "Function",
+ "name": "asset",
+ "printedName": "asset(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LoadingPaneViewController",
- "printedName": "LinkKit.LoadingPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
},
{
"kind": "TypeNominal",
- "name": "LoadingViewModel",
- "printedName": "Workflow.LoadingViewModel",
- "usr": "s:8Workflow16LoadingViewModelC"
+ "name": "Asset",
+ "printedName": "Threads.Asset",
+ "usr": "s:7Threads5AssetO"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit25LoadingPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV5assetyAC7Threads5AssetOFZ",
+ "mangledName": "$s7LinkKit9ComponentV5assetyAC7Threads5AssetOFZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "Custom",
"AccessControl",
"RawDocComment"
],
- "init_kind": "Designated"
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Function",
+ "name": "header",
+ "printedName": "header(_:_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.LoadingPaneViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LoadingPaneViewController",
- "printedName": "LinkKit.LoadingPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
- }
- ],
- "usr": "s:Sq"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
},
{
"kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TextKind",
+ "printedName": "Threads.TextKind",
+ "hasDefaultArg": true,
+ "usr": "s:7Threads8TextKindO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSTextAlignment",
+ "printedName": "UIKit.NSTextAlignment",
+ "hasDefaultArg": true,
+ "usr": "c:@E@NSTextAlignment"
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV6headeryACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
+ "mangledName": "$s7LinkKit9ComponentV6headeryACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
+ "static": true,
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "init_kind": "Designated"
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "name": "body",
+ "printedName": "body(_:_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TextKind",
+ "printedName": "Threads.TextKind",
+ "hasDefaultArg": true,
+ "usr": "s:7Threads8TextKindO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSTextAlignment",
+ "printedName": "UIKit.NSTextAlignment",
+ "hasDefaultArg": true,
+ "usr": "c:@E@NSTextAlignment"
}
],
"declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC11viewDidLoadyyF",
+ "usr": "s:7LinkKit9ComponentV4bodyyACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
+ "mangledName": "$s7LinkKit9ComponentV4bodyyACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
+ "static": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewWillAppear",
- "printedName": "viewWillAppear(_:)",
+ "name": "button",
+ "printedName": "button(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "ButtonViewModel",
+ "printedName": "Threads.ButtonViewModel",
+ "usr": "s:7Threads15ButtonViewModelV"
}
],
"declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewWillAppear:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC14viewWillAppearyySbF",
+ "usr": "s:7LinkKit9ComponentV6buttonyAC7Threads15ButtonViewModelVFZ",
+ "mangledName": "$s7LinkKit9ComponentV6buttonyAC7Threads15ButtonViewModelVFZ",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewWillAppear:",
+ "static": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
"AccessControl"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
+ "name": "textInput",
+ "printedName": "textInput(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "TextInputViewModel",
+ "printedName": "Threads.TextInputViewModel",
+ "usr": "s:7Threads18TextInputViewModelC"
}
],
"declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC13viewDidAppearyySbF",
+ "usr": "s:7LinkKit9ComponentV9textInputyAC7Threads04TextE9ViewModelCFZ",
+ "mangledName": "$s7LinkKit9ComponentV9textInputyAC7Threads04TextE9ViewModelCFZ",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
+ "static": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
"AccessControl"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewDidDisappear",
- "printedName": "viewDidDisappear(_:)",
+ "name": "stack",
+ "printedName": "stack(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidDisappear:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC16viewDidDisappearyySbF",
+ "name": "Array",
+ "printedName": "[LinkKit.Component]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV5stackyACSayACGFZ",
+ "mangledName": "$s7LinkKit9ComponentV5stackyACSayACGFZ",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidDisappear:",
+ "static": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
"AccessControl"
],
"funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "activityIndicatorView",
- "printedName": "activityIndicatorView",
+ "kind": "Function",
+ "name": "spaceAbove",
+ "printedName": "spaceAbove(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "PlaidActivityIndicator",
- "printedName": "Threads.PlaidActivityIndicator",
- "usr": "c:@M@Threads@objc(cs)PlaidActivityIndicator"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CGFloat",
+ "printedName": "CoreGraphics.CGFloat",
+ "usr": "s:14CoreFoundation7CGFloatV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit25LoadingPaneViewControllerC017activityIndicatorE033_02203F4AD901BE57F27AD614C29CA913LL7Threads013PlaidActivityH0Cvp",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC017activityIndicatorE033_02203F4AD901BE57F27AD614C29CA913LL7Threads013PlaidActivityH0Cvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV10spaceAboveyAC14CoreFoundation7CGFloatVF",
+ "mangledName": "$s7LinkKit9ComponentV10spaceAboveyAC12CoreGraphics7CGFloatVF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "kind": "Function",
+ "name": "spaceBelow",
+ "printedName": "spaceBelow(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LoadingViewModel",
- "printedName": "Workflow.LoadingViewModel",
- "usr": "s:8Workflow16LoadingViewModelC"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CGFloat",
+ "printedName": "CoreGraphics.CGFloat",
+ "usr": "s:14CoreFoundation7CGFloatV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit25LoadingPaneViewControllerC9viewModel33_02203F4AD901BE57F27AD614C29CA913LL8Workflow0ceH0Cvp",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC9viewModel33_02203F4AD901BE57F27AD614C29CA913LL8Workflow0ceH0Cvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV10spaceBelowyAC14CoreFoundation7CGFloatVF",
+ "mangledName": "$s7LinkKit9ComponentV10spaceBelowyAC12CoreGraphics7CGFloatVF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "timer",
- "printedName": "timer",
+ "kind": "Function",
+ "name": "margin",
+ "printedName": "margin(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Timer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Timer",
- "printedName": "Foundation.Timer",
- "usr": "c:objc(cs)NSTimer"
- }
- ],
- "usr": "s:Sq"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIEdgeInsets",
+ "printedName": "UIKit.UIEdgeInsets",
+ "usr": "c:@S@UIEdgeInsets"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit25LoadingPaneViewControllerC5timer33_02203F4AD901BE57F27AD614C29CA913LLSo7NSTimerCSgvp",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC5timer33_02203F4AD901BE57F27AD614C29CA913LLSo7NSTimerCSgvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV6marginyACSo12UIEdgeInsetsVF",
+ "mangledName": "$s7LinkKit9ComponentV6marginyACSo12UIEdgeInsetsVF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
- "hasStorage": true
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
+ "kind": "Function",
+ "name": "show",
+ "printedName": "show(in:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LoadingPaneViewController",
- "printedName": "LinkKit.LoadingPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV4show2inSo6UIViewCAG_tF",
+ "mangledName": "$s7LinkKit9ComponentV4show2inSo6UIViewCAG_tF",
"moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
+ "AccessControl",
+ "DiscardableResult"
],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "funcSelfKind": "NonMutating"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AuthenticationServices",
- "printedName": "AuthenticationServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "SafariServices",
- "printedName": "SafariServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "os",
- "printedName": "os",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "LinkHandler",
- "printedName": "LinkHandler",
- "children": [
{
"kind": "TypeDecl",
- "name": "Dependencies",
- "printedName": "Dependencies",
+ "name": "Layout",
+ "printedName": "Layout",
"children": [
{
- "kind": "Var",
- "name": "keyValueStoreServiceFactory",
- "printedName": "keyValueStoreServiceFactory",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(horizontal:vertical:margin:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> LinkKit.KeyValueStoreService",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreService",
- "printedName": "LinkKit.KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Layout",
+ "printedName": "LinkKit.Component.Layout",
+ "usr": "s:7LinkKit9ComponentV6LayoutV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "HorizontalDimension",
+ "printedName": "LinkKit.Component.Layout.HorizontalDimension",
+ "hasDefaultArg": true,
+ "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "VerticalDimension",
+ "printedName": "LinkKit.Component.Layout.VerticalDimension",
+ "hasDefaultArg": true,
+ "usr": "s:7LinkKit9ComponentV6LayoutV17VerticalDimensionO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIEdgeInsets",
+ "printedName": "UIKit.UIEdgeInsets",
+ "hasDefaultArg": true,
+ "usr": "c:@S@UIEdgeInsets"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvp",
- "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9ComponentV6LayoutV10horizontal8vertical6marginA2E19HorizontalDimensionO_AE08VerticalI0OSo12UIEdgeInsetsVtcfc",
+ "mangledName": "$s7LinkKit9ComponentV6LayoutV10horizontal8vertical6marginA2E19HorizontalDimensionO_AE08VerticalI0OSo12UIEdgeInsetsVtcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "HorizontalDimension",
+ "printedName": "HorizontalDimension",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "Var",
+ "name": "exact",
+ "printedName": "exact",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "() -> LinkKit.KeyValueStoreService",
+ "printedName": "(LinkKit.Component.Layout.HorizontalDimension.Type) -> (CoreGraphics.CGFloat) -> LinkKit.Component.Layout.HorizontalDimension",
"children": [
{
- "kind": "TypeNominal",
- "name": "KeyValueStoreService",
- "printedName": "LinkKit.KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(CoreGraphics.CGFloat) -> LinkKit.Component.Layout.HorizontalDimension",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "HorizontalDimension",
+ "printedName": "LinkKit.Component.Layout.HorizontalDimension",
+ "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CGFloat",
+ "printedName": "CoreGraphics.CGFloat",
+ "usr": "s:14CoreFoundation7CGFloatV"
+ }
+ ]
},
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Metatype",
+ "printedName": "LinkKit.Component.Layout.HorizontalDimension.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "HorizontalDimension",
+ "printedName": "LinkKit.Component.Layout.HorizontalDimension",
+ "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO"
+ }
+ ]
}
]
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvg",
- "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvg",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO5exactyAG14CoreFoundation7CGFloatVcAGmF",
+ "mangledName": "$s7LinkKit9ComponentV6LayoutV19HorizontalDimensionO5exactyAG12CoreGraphics7CGFloatVcAGmF",
"moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(keyValueStoreServiceFactory:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dependencies",
- "printedName": "LinkKit.LinkHandler.Dependencies",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV"
+ "fixedbinaryorder": 0
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> LinkKit.KeyValueStoreService",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreService",
- "printedName": "LinkKit.KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "hasDefaultArg": true
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAeA03KeyfgH0_pyc_tcfc",
- "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAeA03KeyfgH0_pyc_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV",
- "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(configuration:dependencies:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkHandler",
- "printedName": "LinkKit.LinkHandler",
- "usr": "s:7LinkKit0A7HandlerC"
- },
- {
- "kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
- },
- {
- "kind": "TypeNominal",
- "name": "Dependencies",
- "printedName": "LinkKit.LinkHandler.Dependencies",
- "hasDefaultArg": true,
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A7HandlerC13configuration12dependenciesAcA13ConfigurationO_AC12DependenciesVtcfc",
- "mangledName": "$s7LinkKit0A7HandlerC13configuration12dependenciesAcA13ConfigurationO_AC12DependenciesVtcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentUsing:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC4open12presentUsingyAA18PresentationMethodO_tF",
- "mangledName": "$s7LinkKit0A7HandlerC4open12presentUsingyAA18PresentationMethodO_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentUsing:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC4open12presentUsing_yAA18PresentationMethodO_SDyS2SGtF",
- "mangledName": "$s7LinkKit0A7HandlerC4open12presentUsing_yAA18PresentationMethodO_SDyS2SGtF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "resumeAfterTermination",
- "printedName": "resumeAfterTermination(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC22resumeAfterTermination4fromy10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit0A7HandlerC22resumeAfterTermination4fromy10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continue",
- "printedName": "continue(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC8continue4fromy10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit0A7HandlerC8continue4fromy10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continueFrom",
- "printedName": "continueFrom(redirectUri:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.HandlerContinueError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC12continueFrom11redirectUriAA0C13ContinueErrorOSg10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit0A7HandlerC12continueFrom11redirectUriAA0C13ContinueErrorOSg10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "createEmbeddedView",
- "printedName": "createEmbeddedView(presentUsing:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- },
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- }
- ],
- "usr": "s:s6ResultO"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC18createEmbeddedView12presentUsings6ResultOySo6UIViewCAA18ConfigurationErrorOGAA18PresentationMethodO_tF",
- "mangledName": "$s7LinkKit0A7HandlerC18createEmbeddedView12presentUsings6ResultOySo6UIViewCAA18ConfigurationErrorOGAA18PresentationMethodO_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "linkOpenID",
- "printedName": "linkOpenID",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC10linkOpenIDSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC10linkOpenIDSSvp",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC10linkOpenIDSSvg",
- "mangledName": "$s7LinkKit0A7HandlerC10linkOpenIDSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "isOpen": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "onSessionCreated",
- "printedName": "onSessionCreated",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Workflow.Session) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Workflow.Session) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Session",
- "printedName": "Workflow.Session",
- "usr": "s:8Workflow7SessionC"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvp",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 1,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Workflow.Session) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Workflow.Session) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Session",
- "printedName": "Workflow.Session",
- "usr": "s:8Workflow7SessionC"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvg",
- "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "isOpen": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Workflow.Session) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Workflow.Session) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Session",
- "printedName": "Workflow.Session",
- "usr": "s:8Workflow7SessionC"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvs",
- "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "isOpen": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvM",
- "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "isOpen": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "linkPersistentID",
- "printedName": "linkPersistentID",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC16linkPersistentIDSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC16linkPersistentIDSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC16linkPersistentIDSSvg",
- "mangledName": "$s7LinkKit0A7HandlerC16linkPersistentIDSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent",
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "openCallTimestamp",
- "printedName": "openCallTimestamp",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Double?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC17openCallTimestamp33_2F35CE8D0F063DC4E7A32246BB6D8185LLSdSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC17openCallTimestamp33_2F35CE8D0F063DC4E7A32246BB6D8185LLSdSgvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 3,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "state",
- "printedName": "state",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "State",
- "printedName": "LinkKit.LinkHandler.State",
- "usr": "s:7LinkKit0A7HandlerC5State33_2F35CE8D0F063DC4E7A32246BB6D8185LLO"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC5state33_2F35CE8D0F063DC4E7A32246BB6D8185LLAC5StateAELLOvp",
- "mangledName": "$s7LinkKit0A7HandlerC5state33_2F35CE8D0F063DC4E7A32246BB6D8185LLAC5StateAELLOvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 4,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "pendingRedirectUri",
- "printedName": "pendingRedirectUri",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC18pendingRedirectUri33_2F35CE8D0F063DC4E7A32246BB6D8185LL10Foundation3URLVSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC18pendingRedirectUri33_2F35CE8D0F063DC4E7A32246BB6D8185LL10Foundation3URLVSgvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 5,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "configuration",
- "printedName": "configuration",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC13configuration33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA13ConfigurationOvp",
- "mangledName": "$s7LinkKit0A7HandlerC13configuration33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA13ConfigurationOvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 6,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "log",
- "printedName": "log",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC3log33_2F35CE8D0F063DC4E7A32246BB6D8185LL3LogAFVvp",
- "mangledName": "$s7LinkKit0A7HandlerC3log33_2F35CE8D0F063DC4E7A32246BB6D8185LL3LogAFVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 7,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "keyValueService",
- "printedName": "keyValueService",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreService",
- "printedName": "LinkKit.KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC15keyValueService33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA03Keye5StoreF0_pvp",
- "mangledName": "$s7LinkKit0A7HandlerC15keyValueService33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA03Keye5StoreF0_pvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 8,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "session",
- "printedName": "session",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Workflow.Session?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Session",
- "printedName": "Workflow.Session",
- "usr": "s:8Workflow7SessionC"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC7session33_2F35CE8D0F063DC4E7A32246BB6D8185LL8Workflow7SessionCSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC7session33_2F35CE8D0F063DC4E7A32246BB6D8185LL8Workflow7SessionCSgvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 9,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "sdkInfo",
- "printedName": "sdkInfo",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SDKInfoProvider",
- "printedName": "LinkKit.SDKInfoProvider",
- "usr": "s:7LinkKit15SDKInfoProviderV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC7sdkInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA15SDKInfoProviderVvp",
- "mangledName": "$s7LinkKit0A7HandlerC7sdkInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA15SDKInfoProviderVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 10,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "deviceInfo",
- "printedName": "deviceInfo",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DeviceInfoProvider",
- "printedName": "LinkKit.DeviceInfoProvider",
- "usr": "s:7LinkKit18DeviceInfoProviderV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC10deviceInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06DeviceE8ProviderVvp",
- "mangledName": "$s7LinkKit0A7HandlerC10deviceInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06DeviceE8ProviderVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 11,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "localeInfo",
- "printedName": "localeInfo",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LocaleInfoProvider",
- "printedName": "LinkKit.LocaleInfoProvider",
- "usr": "s:7LinkKit18LocaleInfoProviderV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC10localeInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06LocaleE8ProviderVvp",
- "mangledName": "$s7LinkKit0A7HandlerC10localeInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06LocaleE8ProviderVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 12,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "userAgentProvider",
- "printedName": "userAgentProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkHTTPServiceUserAgentProvider",
- "printedName": "LinkKit.LinkHTTPServiceUserAgentProvider",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC17userAgentProvider33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0a15HTTPServiceUsereF0Cvp",
- "mangledName": "$s7LinkKit0A7HandlerC17userAgentProvider33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0a15HTTPServiceUsereF0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 13,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "paneViewModelObserver",
- "printedName": "paneViewModelObserver",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "AppCore.Observer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Observer",
- "printedName": "AppCore.Observer",
- "usr": "s:7AppCore8ObserverC"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC21paneViewModelObserver33_2F35CE8D0F063DC4E7A32246BB6D8185LL7AppCore0G0CSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC21paneViewModelObserver33_2F35CE8D0F063DC4E7A32246BB6D8185LL7AppCore0G0CSgvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 14,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "institutionID",
- "printedName": "institutionID",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC13institutionID33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC13institutionID33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 15,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "institutionIDOptionKey",
- "printedName": "institutionIDOptionKey",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC22institutionIDOptionKey33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC22institutionIDOptionKey33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 16,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "selectAccount",
- "printedName": "selectAccount",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC13selectAccount33_2F35CE8D0F063DC4E7A32246BB6D8185LLSbvp",
- "mangledName": "$s7LinkKit0A7HandlerC13selectAccount33_2F35CE8D0F063DC4E7A32246BB6D8185LLSbvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 17,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "selectAccountOptionKey",
- "printedName": "selectAccountOptionKey",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC22selectAccountOptionKey33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC22selectAccountOptionKey33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 18,
- "isLet": true,
- "hasStorage": true
- }
- ],
- "declKind": "Class",
- "usr": "s:7LinkKit0A7HandlerC",
- "mangledName": "$s7LinkKit0A7HandlerC",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Handler",
- "printedName": "Handler",
- "usr": "s:7LinkKit7HandlerP",
- "mangledName": "$s7LinkKit7HandlerP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "KeyValueStoreKey",
- "printedName": "KeyValueStoreKey",
- "children": [
- {
- "kind": "Var",
- "name": "linkPersistentID",
- "printedName": "linkPersistentID",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.KeyValueStoreKey.Type) -> LinkKit.KeyValueStoreKey",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.KeyValueStoreKey.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit013KeyValueStoreC0O16linkPersistentIDyA2CmF",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O16linkPersistentIDyA2CmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.KeyValueStoreKey?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0ACSgSS_tcfc",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0ACSgSS_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0SSvp",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0SSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0SSvg",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0SSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit013KeyValueStoreC0O",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "enumRawTypeName": "String",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "KeyValueStoreService",
- "printedName": "KeyValueStoreService",
- "children": [
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit20KeyValueStoreServiceP6string3forSSSgAA0cdeC0O_tF",
- "mangledName": "$s7LinkKit20KeyValueStoreServiceP6string3forSSSgAA0cdeC0O_tF",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.KeyValueStoreService>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "set",
- "printedName": "set(_:for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit20KeyValueStoreServiceP3set_3forySS_AA0cdeC0OtF",
- "mangledName": "$s7LinkKit20KeyValueStoreServiceP3set_3forySS_AA0cdeC0OtF",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.KeyValueStoreService>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit20KeyValueStoreServiceP",
- "mangledName": "$s7LinkKit20KeyValueStoreServiceP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UserDefaultsService",
- "printedName": "UserDefaultsService",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(defaults:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UserDefaultsService",
- "printedName": "LinkKit.UserDefaultsService",
- "usr": "s:7LinkKit19UserDefaultsServiceV"
- },
- {
- "kind": "TypeNominal",
- "name": "UserDefaults",
- "printedName": "Foundation.UserDefaults",
- "hasDefaultArg": true,
- "usr": "c:objc(cs)NSUserDefaults"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit19UserDefaultsServiceV8defaultsACSo06NSUserD0C_tcfc",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV8defaultsACSo06NSUserD0C_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "defaults",
- "printedName": "defaults",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UserDefaults",
- "printedName": "Foundation.UserDefaults",
- "usr": "c:objc(cs)NSUserDefaults"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit19UserDefaultsServiceV8defaults33_A39322CDD144454DFDEA5686E47673A8LLSo06NSUserD0Cvp",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV8defaults33_A39322CDD144454DFDEA5686E47673A8LLSo06NSUserD0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit19UserDefaultsServiceV6string3forSSSgAA013KeyValueStoreH0O_tF",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV6string3forSSSgAA013KeyValueStoreH0O_tF",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "set",
- "printedName": "set(_:for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit19UserDefaultsServiceV3set_3forySS_AA013KeyValueStoreH0OtF",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV3set_3forySS_AA013KeyValueStoreH0OtF",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit19UserDefaultsServiceV",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "KeyValueStoreService",
- "printedName": "KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP",
- "mangledName": "$s7LinkKit20KeyValueStoreServiceP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "children": [
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit17InternalEquatableP2eeoiySbx_xtFZ",
- "mangledName": "$s7LinkKit17InternalEquatableP2eeoiySbx_xtFZ",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalEquatable>",
- "sugared_genericSig": "",
- "static": true,
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SDKValidationService",
- "printedName": "SDKValidationService",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(sdkReleaseLoader:log:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SDKValidationService",
- "printedName": "LinkKit.SDKValidationService",
- "usr": "s:7LinkKit20SDKValidationServiceC"
- },
- {
- "kind": "TypeNominal",
- "name": "SDKReleaseLoader",
- "printedName": "LinkKit.SDKReleaseLoader",
- "usr": "s:7LinkKit16SDKReleaseLoaderP"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit20SDKValidationServiceC16sdkReleaseLoader3logAcA010SDKReleaseG0_p_3LogAGVtcfc",
- "mangledName": "$s7LinkKit20SDKValidationServiceC16sdkReleaseLoader3logAcA010SDKReleaseG0_p_3LogAGVtcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "validateIntegration",
- "printedName": "validateIntegration()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit20SDKValidationServiceC19validateIntegrationyyF",
- "mangledName": "$s7LinkKit20SDKValidationServiceC19validateIntegrationyyF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "sdkReleaseLoader",
- "printedName": "sdkReleaseLoader",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SDKReleaseLoader",
- "printedName": "LinkKit.SDKReleaseLoader",
- "usr": "s:7LinkKit16SDKReleaseLoaderP"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20SDKValidationServiceC16sdkReleaseLoader33_DAB7F5C045708C32FAC47CA6EAB369F7LLAA010SDKReleaseG0_pvp",
- "mangledName": "$s7LinkKit20SDKValidationServiceC16sdkReleaseLoader33_DAB7F5C045708C32FAC47CA6EAB369F7LLAA010SDKReleaseG0_pvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "log",
- "printedName": "log",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20SDKValidationServiceC3log33_DAB7F5C045708C32FAC47CA6EAB369F7LL3LogAFVvp",
- "mangledName": "$s7LinkKit20SDKValidationServiceC3log33_DAB7F5C045708C32FAC47CA6EAB369F7LL3LogAFVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
- }
- ],
- "declKind": "Class",
- "usr": "s:7LinkKit20SDKValidationServiceC",
- "mangledName": "$s7LinkKit20SDKValidationServiceC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "AccessControl"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "Constants",
- "printedName": "Constants",
- "children": [
- {
- "kind": "Var",
- "name": "linkWebviewFallbackScheme",
- "printedName": "linkWebviewFallbackScheme",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Constants.Type) -> LinkKit.Constants",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Constants",
- "printedName": "LinkKit.Constants",
- "usr": "s:7LinkKit9ConstantsO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Constants.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Constants",
- "printedName": "LinkKit.Constants",
- "usr": "s:7LinkKit9ConstantsO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9ConstantsO25linkWebviewFallbackSchemeyA2CmF",
- "mangledName": "$s7LinkKit9ConstantsO25linkWebviewFallbackSchemeyA2CmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.Constants?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Constants",
- "printedName": "LinkKit.Constants",
- "usr": "s:7LinkKit9ConstantsO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9ConstantsO8rawValueACSgSS_tcfc",
- "mangledName": "$s7LinkKit9ConstantsO8rawValueACSgSS_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit9ConstantsO8rawValueSSvp",
- "mangledName": "$s7LinkKit9ConstantsO8rawValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit9ConstantsO8rawValueSSvg",
- "mangledName": "$s7LinkKit9ConstantsO8rawValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit9ConstantsO",
- "mangledName": "$s7LinkKit9ConstantsO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "enumRawTypeName": "String",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "PLKPlaid",
- "printedName": "PLKPlaid",
- "children": [
- {
- "kind": "Function",
- "name": "createWithLinkTokenConfiguration",
- "printedName": "createWithLinkTokenConfiguration(_:error:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKHandler?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKHandler",
- "printedName": "LinkKit.PLKHandler",
- "usr": "c:objc(pl)PLKHandler"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "PLKLinkTokenConfiguration",
- "printedName": "LinkKit.PLKLinkTokenConfiguration",
- "usr": "c:objc(cs)PLKLinkTokenConfiguration"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.AutoreleasingUnsafeMutablePointer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AutoreleasingUnsafeMutablePointer",
- "printedName": "Swift.AutoreleasingUnsafeMutablePointer",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "usr": "s:SA"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)createWithLinkTokenConfiguration:error:",
- "mangledName": "$s7LinkKit8PLKPlaidC010createWithA18TokenConfiguration_5errorSo10PLKHandler_pSgSo07PLKLinkfG0C_SAySo7NSErrorCSgGSgtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "createWithLinkPublicKeyConfiguration",
- "printedName": "createWithLinkPublicKeyConfiguration(_:error:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKHandler?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKHandler",
- "printedName": "LinkKit.PLKHandler",
- "usr": "c:objc(pl)PLKHandler"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "PLKLinkPublicKeyConfiguration",
- "printedName": "LinkKit.PLKLinkPublicKeyConfiguration",
- "usr": "c:objc(cs)PLKLinkPublicKeyConfiguration"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.AutoreleasingUnsafeMutablePointer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AutoreleasingUnsafeMutablePointer",
- "printedName": "Swift.AutoreleasingUnsafeMutablePointer",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "usr": "s:SA"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)createWithLinkPublicKeyConfiguration:error:",
- "mangledName": "$s7LinkKit8PLKPlaidC010createWithA22PublicKeyConfiguration_5errorSo10PLKHandler_pSgSo07PLKLinkfgH0C_SAySo7NSErrorCSgGSgtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "sdkVersion",
- "printedName": "sdkVersion",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cpy)sdkVersion",
- "mangledName": "$s7LinkKit8PLKPlaidC10sdkVersionSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)sdkVersion",
- "mangledName": "$s7LinkKit8PLKPlaidC10sdkVersionSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaid",
- "printedName": "LinkKit.PLKPlaid",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(im)init",
- "mangledName": "$s7LinkKit8PLKPlaidCACycfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid",
- "mangledName": "$s7LinkKit8PLKPlaidC",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PLKPlaidConfigurationError",
- "printedName": "PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "Var",
- "name": "malformedClientID",
- "printedName": "malformedClientID",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorMalformedClientID",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO17malformedClientIDyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "missingAuthorization",
- "printedName": "missingAuthorization",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorMissingAuthorization",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO20missingAuthorizationyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "noProduct",
- "printedName": "noProduct",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorNoProduct",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO9noProductyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "invalidOptionValue",
- "printedName": "invalidOptionValue",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidOptionValue",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO18invalidOptionValueyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 3
- },
- {
- "kind": "Var",
- "name": "invalidOptionCombination",
- "printedName": "invalidOptionCombination",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidOptionCombination",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO24invalidOptionCombinationyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 4
- },
- {
- "kind": "Var",
- "name": "invalidEnvironmentValue",
- "printedName": "invalidEnvironmentValue",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidEnvironmentValue",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO23invalidEnvironmentValueyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 5
- },
- {
- "kind": "Var",
- "name": "invalidToken",
- "printedName": "invalidToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidToken",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO12invalidTokenyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 6
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKPlaidConfigurationError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueACSgSi_tcfc",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueACSgSi_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivp",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivg",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "enumRawTypeName": "Int",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PLKHandlerShim",
- "printedName": "PLKHandlerShim",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(handler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKHandlerShim",
- "printedName": "LinkKit.PLKHandlerShim",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim"
- },
- {
- "kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit14PLKHandlerShimC7handlerAcA7Handler_p_tcfc",
- "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAcA7Handler_p_tcfc",
- "moduleName": "LinkKit",
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "handler",
- "printedName": "handler",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvp",
- "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "HasStorage"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvg",
- "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentationHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandleryySo16UIViewControllerCc_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithPresentationHandler:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentationHandler:dismissalHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:dismissalHandler:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandler09dismissalG0yySo16UIViewControllerCc_yAHctF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithPresentationHandler:dismissalHandler:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(withContextViewController:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithContextViewController:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open25withContextViewControllerySo06UIViewI0C_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithContextViewController:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentationHandler:options:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:options:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandler7optionsyySo16UIViewControllerCc_SDyS2SGtF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithPresentationHandler:options:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentationHandler:dismissalHandler:options:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:dismissalHandler:options:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandler09dismissalG07optionsyySo16UIViewControllerCc_yAIcSDyS2SGtF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithPresentationHandler:dismissalHandler:options:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(withContextViewController:options:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithContextViewController:options:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open25withContextViewController7optionsySo06UIViewI0C_SDyS2SGtF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithContextViewController:options:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "createEmbeddedView",
- "printedName": "createEmbeddedView(_:errorCompletion:successCompletion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Error) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIView) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)createEmbeddedView:errorCompletion:successCompletion:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC18createEmbeddedView_15errorCompletion07successI0ySo16UIViewControllerC_ys5Error_pcySo0K0CctF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "createEmbeddedView:errorCompletion:successCompletion:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "createEmbeddedView",
- "printedName": "createEmbeddedView(_:dismissalHandler:errorCompletion:successCompletion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Error) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIView) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)createEmbeddedView:dismissalHandler:errorCompletion:successCompletion:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC18createEmbeddedView_16dismissalHandler15errorCompletion07successK0yySo16UIViewControllerCc_yAIcys5Error_pcySo0M0CctF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "createEmbeddedView:dismissalHandler:errorCompletion:successCompletion:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continue",
- "printedName": "continue(fromRedirectUri:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Error?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)continueFromRedirectUri:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC8continue15fromRedirectUris5Error_pSg10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "continueFromRedirectUri:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continue",
- "printedName": "continue(withRedirectUri:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)continueWithRedirectUri:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC8continue15withRedirectUriy10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "continueWithRedirectUri:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "resume",
- "printedName": "resume(afterTermination:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)resumeAfterTermination:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC6resume16afterTerminationy10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "resumeAfterTermination:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKHandlerShim",
- "printedName": "LinkKit.PLKHandlerShim",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)init",
- "mangledName": "$s7LinkKit14PLKHandlerShimCACycfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim",
- "mangledName": "$s7LinkKit14PLKHandlerShimC",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "superclassNames": [
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ExitErrorRawCode",
- "printedName": "ExitErrorRawCode",
- "children": [
- {
- "kind": "Var",
- "name": "int",
- "printedName": "int",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.Int) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Int) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorRawCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit16ExitErrorRawCodeO3intyACSicACmF",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO3intyACSicACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "string",
- "printedName": "string",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.String) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorRawCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit16ExitErrorRawCodeO6stringyACSScACmF",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO6stringyACSScACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "unknownTypeAndCode",
- "printedName": "unknownTypeAndCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.String, Swift.String) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(type: Swift.String, code: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorRawCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit16ExitErrorRawCodeO014unknownTypeAndF0yACSS_SStcACmF",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO014unknownTypeAndF0yACSS_SStcACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 2
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit16ExitErrorRawCodeO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit16ExitErrorRawCodeO",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO",
- "moduleName": "LinkKit",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InternalExpressibleByStringLiteral",
- "printedName": "InternalExpressibleByStringLiteral",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringLiteral:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP06stringG0xSS_tcfc",
- "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP06stringG0xSS_tcfc",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalExpressibleByStringLiteral>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP",
- "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InternalStringRepresentable",
- "printedName": "InternalStringRepresentable",
- "children": [
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit27InternalStringRepresentablePAAE6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit27InternalStringRepresentablePAAE6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalStringRepresentable>",
- "sugared_genericSig": "",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit27InternalStringRepresentableP",
- "mangledName": "$s7LinkKit27InternalStringRepresentableP",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 : LinkKit.InternalExpressibleByStringLiteral, τ_0_0 : Swift.CustomStringConvertible>",
- "sugared_genericSig": "",
- "conformances": [
- {
- "kind": "Conformance",
- "name": "InternalExpressibleByStringLiteral",
- "printedName": "InternalExpressibleByStringLiteral",
- "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP",
- "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "Component",
- "printedName": "Component",
- "children": [
- {
- "kind": "Function",
- "name": "asset",
- "printedName": "asset(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "Asset",
- "printedName": "Threads.Asset",
- "usr": "s:7Threads5AssetO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV5assetyAC7Threads5AssetOFZ",
- "mangledName": "$s7LinkKit9ComponentV5assetyAC7Threads5AssetOFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "header",
- "printedName": "header(_:_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "TextKind",
- "printedName": "Threads.TextKind",
- "hasDefaultArg": true,
- "usr": "s:7Threads8TextKindO"
- },
- {
- "kind": "TypeNominal",
- "name": "NSTextAlignment",
- "printedName": "UIKit.NSTextAlignment",
- "hasDefaultArg": true,
- "usr": "c:@E@NSTextAlignment"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV6headeryACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
- "mangledName": "$s7LinkKit9ComponentV6headeryACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "body",
- "printedName": "body(_:_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "TextKind",
- "printedName": "Threads.TextKind",
- "hasDefaultArg": true,
- "usr": "s:7Threads8TextKindO"
- },
- {
- "kind": "TypeNominal",
- "name": "NSTextAlignment",
- "printedName": "UIKit.NSTextAlignment",
- "hasDefaultArg": true,
- "usr": "c:@E@NSTextAlignment"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV4bodyyACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
- "mangledName": "$s7LinkKit9ComponentV4bodyyACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "button",
- "printedName": "button(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "ButtonViewModel",
- "printedName": "Threads.ButtonViewModel",
- "usr": "s:7Threads15ButtonViewModelV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV6buttonyAC7Threads15ButtonViewModelVFZ",
- "mangledName": "$s7LinkKit9ComponentV6buttonyAC7Threads15ButtonViewModelVFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "textInput",
- "printedName": "textInput(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "TextInputViewModel",
- "printedName": "Threads.TextInputViewModel",
- "usr": "s:7Threads18TextInputViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV9textInputyAC7Threads04TextE9ViewModelCFZ",
- "mangledName": "$s7LinkKit9ComponentV9textInputyAC7Threads04TextE9ViewModelCFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "stack",
- "printedName": "stack(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Component]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV5stackyACSayACGFZ",
- "mangledName": "$s7LinkKit9ComponentV5stackyACSayACGFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "spaceAbove",
- "printedName": "spaceAbove(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV10spaceAboveyAC14CoreFoundation7CGFloatVF",
- "mangledName": "$s7LinkKit9ComponentV10spaceAboveyAC12CoreGraphics7CGFloatVF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "spaceBelow",
- "printedName": "spaceBelow(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV10spaceBelowyAC14CoreFoundation7CGFloatVF",
- "mangledName": "$s7LinkKit9ComponentV10spaceBelowyAC12CoreGraphics7CGFloatVF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "margin",
- "printedName": "margin(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV6marginyACSo12UIEdgeInsetsVF",
- "mangledName": "$s7LinkKit9ComponentV6marginyACSo12UIEdgeInsetsVF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "show",
- "printedName": "show(in:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- },
- {
- "kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV4show2inSo6UIViewCAG_tF",
- "mangledName": "$s7LinkKit9ComponentV4show2inSo6UIViewCAG_tF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "DiscardableResult"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "Layout",
- "printedName": "Layout",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(horizontal:vertical:margin:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Layout",
- "printedName": "LinkKit.Component.Layout",
- "usr": "s:7LinkKit9ComponentV6LayoutV"
- },
- {
- "kind": "TypeNominal",
- "name": "HorizontalDimension",
- "printedName": "LinkKit.Component.Layout.HorizontalDimension",
- "hasDefaultArg": true,
- "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO"
- },
- {
- "kind": "TypeNominal",
- "name": "VerticalDimension",
- "printedName": "LinkKit.Component.Layout.VerticalDimension",
- "hasDefaultArg": true,
- "usr": "s:7LinkKit9ComponentV6LayoutV17VerticalDimensionO"
- },
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "hasDefaultArg": true,
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9ComponentV6LayoutV10horizontal8vertical6marginA2E19HorizontalDimensionO_AE08VerticalI0OSo12UIEdgeInsetsVtcfc",
- "mangledName": "$s7LinkKit9ComponentV6LayoutV10horizontal8vertical6marginA2E19HorizontalDimensionO_AE08VerticalI0OSo12UIEdgeInsetsVtcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "TypeDecl",
- "name": "HorizontalDimension",
- "printedName": "HorizontalDimension",
- "children": [
- {
- "kind": "Var",
- "name": "exact",
- "printedName": "exact",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Component.Layout.HorizontalDimension.Type) -> (CoreGraphics.CGFloat) -> LinkKit.Component.Layout.HorizontalDimension",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(CoreGraphics.CGFloat) -> LinkKit.Component.Layout.HorizontalDimension",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "HorizontalDimension",
- "printedName": "LinkKit.Component.Layout.HorizontalDimension",
- "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Component.Layout.HorizontalDimension.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "HorizontalDimension",
- "printedName": "LinkKit.Component.Layout.HorizontalDimension",
- "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO5exactyAG14CoreFoundation7CGFloatVcAGmF",
- "mangledName": "$s7LinkKit9ComponentV6LayoutV19HorizontalDimensionO5exactyAG12CoreGraphics7CGFloatVcAGmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "fill",
- "printedName": "fill",
+ "kind": "Var",
+ "name": "fill",
+ "printedName": "fill",
"children": [
{
"kind": "TypeFunc",
@@ -48269,291 +42744,471 @@
},
{
"kind": "TypeDecl",
- "name": "ConsentPaneViewController",
- "printedName": "ConsentPaneViewController",
+ "name": "DeviceInfoProvider",
+ "printedName": "DeviceInfoProvider",
"children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
+ "kind": "Var",
+ "name": "model",
+ "printedName": "model",
"children": [
{
"kind": "TypeNominal",
- "name": "ConsentPaneViewController",
- "printedName": "LinkKit.ConsentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "ConsentViewModel",
- "printedName": "Workflow.ConsentViewModel",
- "usr": "s:8Workflow16ConsentViewModelC"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18DeviceInfoProviderV5modelSSvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV5modelSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
- "children": [
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ConsentPaneViewController?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ConsentPaneViewController",
- "printedName": "LinkKit.ConsentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV5modelSSvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV5modelSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "systemVersion",
+ "printedName": "systemVersion",
+ "children": [
{
"kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18DeviceInfoProviderV13systemVersionSSvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV13systemVersionSSvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "init_kind": "Designated"
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV13systemVersionSSvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV13systemVersionSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "kind": "Var",
+ "name": "machine",
+ "printedName": "machine",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC11viewDidLoadyyF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18DeviceInfoProviderV7machineSSvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV7machineSSvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "funcSelfKind": "NonMutating"
+ "fixedbinaryorder": 2,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV7machineSSvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV7machineSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
+ "kind": "Var",
+ "name": "contentSizeCategory",
+ "printedName": "contentSizeCategory",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC13viewDidAppearyySbF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "funcSelfKind": "NonMutating"
+ "fixedbinaryorder": 3,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "screenHeight",
+ "printedName": "screenHeight",
"children": [
{
"kind": "TypeNominal",
- "name": "ConsentViewModel",
- "printedName": "Workflow.ConsentViewModel",
- "usr": "s:8Workflow16ConsentViewModelC"
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC9viewModel33_3A2E76AA8A9D2EB797486DDAA7C1D235LL8Workflow0ceH0Cvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC9viewModel33_3A2E76AA8A9D2EB797486DDAA7C1D235LL8Workflow0ceH0Cvp",
+ "usr": "s:7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 0,
+ "fixedbinaryorder": 4,
"isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "headerLabel",
- "printedName": "headerLabel",
+ "name": "screenWidth",
+ "printedName": "screenWidth",
"children": [
{
"kind": "TypeNominal",
- "name": "UILabel",
- "printedName": "UIKit.UILabel",
- "usr": "c:objc(cs)UILabel"
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC11headerLabel33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo7UILabelCvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC11headerLabel33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo7UILabelCvp",
+ "usr": "s:7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 1,
+ "fixedbinaryorder": 5,
"isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Var",
- "name": "sectionsView",
- "printedName": "sectionsView",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "UIStackView",
- "printedName": "UIKit.UIStackView",
- "usr": "c:objc(cs)UIStackView"
+ "name": "DeviceInfoProvider",
+ "printedName": "LinkKit.DeviceInfoProvider",
+ "usr": "s:7LinkKit18DeviceInfoProviderV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC08sectionsE033_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo07UIStackE0Cvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC08sectionsE033_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo07UIStackE0Cvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit18DeviceInfoProviderVACycfc",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderVACycfc",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit18DeviceInfoProviderV",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "DeviceInfoProviding",
+ "printedName": "DeviceInfoProviding",
+ "usr": "s:8Workflow19DeviceInfoProvidingP",
+ "mangledName": "$s8Workflow19DeviceInfoProvidingP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LocaleInfoProvider",
+ "printedName": "LocaleInfoProvider",
+ "children": [
{
"kind": "Var",
- "name": "consentButton",
- "printedName": "consentButton",
+ "name": "identifier",
+ "printedName": "identifier",
"children": [
{
"kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC13consentButton33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo8UIButtonCvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC13consentButton33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo8UIButtonCvp",
+ "usr": "s:7LinkKit18LocaleInfoProviderV10identifierSSvp",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV10identifierSSvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 3,
+ "fixedbinaryorder": 0,
"isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18LocaleInfoProviderV10identifierSSvg",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV10identifierSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "exitButton",
- "printedName": "exitButton",
+ "name": "regionCode",
+ "printedName": "regionCode",
"children": [
{
"kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC10exitButton33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo8UIButtonCvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC10exitButton33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo8UIButtonCvp",
+ "usr": "s:7LinkKit18LocaleInfoProviderV10regionCodeSSSgvp",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV10regionCodeSSSgvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 4,
+ "fixedbinaryorder": 1,
"isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18LocaleInfoProviderV10regionCodeSSSgvg",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV10regionCodeSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
+ "kind": "Var",
+ "name": "languageCode",
+ "printedName": "languageCode",
"children": [
- {
- "kind": "TypeNominal",
- "name": "ConsentPaneViewController",
- "printedName": "LinkKit.ConsentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController"
- },
{
"kind": "TypeNominal",
"name": "Optional",
@@ -48567,104 +43222,87 @@
}
],
"usr": "s:Sq"
- },
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18LocaleInfoProviderV12languageCodeSSSgvp",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV12languageCodeSSSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 2,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18LocaleInfoProviderV12languageCodeSSSgvg",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV12languageCodeSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LocaleInfoProvider",
+ "printedName": "LinkKit.LocaleInfoProvider",
+ "usr": "s:7LinkKit18LocaleInfoProviderV"
}
],
"declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "usr": "s:7LinkKit18LocaleInfoProviderVACycfc",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderVACycfc",
"moduleName": "LinkKit",
- "overriding": true,
"implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
"init_kind": "Designated"
}
],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit18LocaleInfoProviderV",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
+ "AccessControl"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "LocaleInfoProviding",
+ "printedName": "LocaleInfoProviding",
+ "usr": "s:8Workflow19LocaleInfoProvidingP",
+ "mangledName": "$s8Workflow19LocaleInfoProvidingP"
},
{
"kind": "Conformance",
@@ -48675,32 +43313,15 @@
}
]
},
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "DeviceInfoProvider",
- "printedName": "DeviceInfoProvider",
+ "name": "SDKInfoProvider",
+ "printedName": "SDKInfoProvider",
"children": [
{
"kind": "Var",
- "name": "model",
- "printedName": "model",
+ "name": "name",
+ "printedName": "name",
"children": [
{
"kind": "TypeNominal",
@@ -48710,8 +43331,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV5modelSSvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV5modelSSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV4nameSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV4nameSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -48735,8 +43356,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV5modelSSvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV5modelSSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV4nameSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV4nameSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48748,8 +43369,8 @@
},
{
"kind": "Var",
- "name": "systemVersion",
- "printedName": "systemVersion",
+ "name": "version",
+ "printedName": "version",
"children": [
{
"kind": "TypeNominal",
@@ -48759,8 +43380,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV13systemVersionSSvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV13systemVersionSSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV7versionSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV7versionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -48784,8 +43405,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV13systemVersionSSvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV13systemVersionSSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV7versionSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV7versionSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48797,8 +43418,8 @@
},
{
"kind": "Var",
- "name": "machine",
- "printedName": "machine",
+ "name": "id",
+ "printedName": "id",
"children": [
{
"kind": "TypeNominal",
@@ -48808,8 +43429,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV7machineSSvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV7machineSSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV2idSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV2idSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -48833,8 +43454,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV7machineSSvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV7machineSSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV2idSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV2idSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48846,8 +43467,8 @@
},
{
"kind": "Var",
- "name": "contentSizeCategory",
- "printedName": "contentSizeCategory",
+ "name": "build",
+ "printedName": "build",
"children": [
{
"kind": "TypeNominal",
@@ -48857,8 +43478,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV5buildSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV5buildSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -48882,8 +43503,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV5buildSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV5buildSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48895,19 +43516,19 @@
},
{
"kind": "Var",
- "name": "screenHeight",
- "printedName": "screenHeight",
+ "name": "branch",
+ "printedName": "branch",
"children": [
{
"kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV6branchSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV6branchSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -48924,64 +43545,15 @@
"printedName": "Get()",
"children": [
{
- "kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "screenWidth",
- "printedName": "screenWidth",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 5,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV6branchSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV6branchSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48991,59 +43563,10 @@
}
]
},
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DeviceInfoProvider",
- "printedName": "LinkKit.DeviceInfoProvider",
- "usr": "s:7LinkKit18DeviceInfoProviderV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18DeviceInfoProviderVACycfc",
- "mangledName": "$s7LinkKit18DeviceInfoProviderVACycfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit18DeviceInfoProviderV",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "DeviceInfoProviding",
- "printedName": "DeviceInfoProviding",
- "usr": "s:8Workflow19DeviceInfoProvidingP",
- "mangledName": "$s8Workflow19DeviceInfoProvidingP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LocaleInfoProvider",
- "printedName": "LocaleInfoProvider",
- "children": [
{
"kind": "Var",
- "name": "identifier",
- "printedName": "identifier",
+ "name": "commit",
+ "printedName": "commit",
"children": [
{
"kind": "TypeNominal",
@@ -49053,15 +43576,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18LocaleInfoProviderV10identifierSSvp",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV10identifierSSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV6commitSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV6commitSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 0,
+ "fixedbinaryorder": 5,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -49078,8 +43601,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18LocaleInfoProviderV10identifierSSvg",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV10identifierSSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV6commitSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV6commitSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -49091,8 +43614,8 @@
},
{
"kind": "Var",
- "name": "regionCode",
- "printedName": "regionCode",
+ "name": "reactNativeSDKVersion",
+ "printedName": "reactNativeSDKVersion",
"children": [
{
"kind": "TypeNominal",
@@ -49110,15 +43633,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18LocaleInfoProviderV10regionCodeSSSgvp",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV10regionCodeSSSgvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 1,
+ "fixedbinaryorder": 6,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -49143,8 +43666,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18LocaleInfoProviderV10regionCodeSSSgvg",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV10regionCodeSSSgvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -49156,34 +43679,26 @@
},
{
"kind": "Var",
- "name": "languageCode",
- "printedName": "languageCode",
+ "name": "isRunningFlutterSDK",
+ "printedName": "isRunningFlutterSDK",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18LocaleInfoProviderV12languageCodeSSSgvp",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV12languageCodeSSSgvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
+ "fixedbinaryorder": 7,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -49194,22 +43709,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18LocaleInfoProviderV12languageCodeSSSgvg",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV12languageCodeSSSgvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -49226,22 +43733,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "LocaleInfoProvider",
- "printedName": "LinkKit.LocaleInfoProvider",
- "usr": "s:7LinkKit18LocaleInfoProviderV"
+ "name": "SDKInfoProvider",
+ "printedName": "LinkKit.SDKInfoProvider",
+ "usr": "s:7LinkKit15SDKInfoProviderV"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit18LocaleInfoProviderVACycfc",
- "mangledName": "$s7LinkKit18LocaleInfoProviderVACycfc",
+ "usr": "s:7LinkKit15SDKInfoProviderVACycfc",
+ "mangledName": "$s7LinkKit15SDKInfoProviderVACycfc",
"moduleName": "LinkKit",
"implicit": true,
"init_kind": "Designated"
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit18LocaleInfoProviderV",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV",
+ "usr": "s:7LinkKit15SDKInfoProviderV",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -49249,10 +43756,10 @@
"conformances": [
{
"kind": "Conformance",
- "name": "LocaleInfoProviding",
- "printedName": "LocaleInfoProviding",
- "usr": "s:8Workflow19LocaleInfoProvidingP",
- "mangledName": "$s8Workflow19LocaleInfoProvidingP"
+ "name": "SDKInfoProviding",
+ "printedName": "SDKInfoProviding",
+ "usr": "s:8Workflow16SDKInfoProvidingP",
+ "mangledName": "$s8Workflow16SDKInfoProvidingP"
},
{
"kind": "Conformance",
@@ -49263,187 +43770,490 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "WebKit",
+ "printedName": "WebKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AuthenticationServices",
+ "printedName": "AuthenticationServices",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "SDKInfoProvider",
- "printedName": "SDKInfoProvider",
+ "name": "InProcessWebviewFallbackController",
+ "printedName": "InProcessWebviewFallbackController",
"children": [
{
- "kind": "Var",
- "name": "name",
- "printedName": "name",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(viewModel:log:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InProcessWebviewFallbackController",
+ "printedName": "LinkKit.InProcessWebviewFallbackController",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WebViewFallbackViewModel",
+ "printedName": "Workflow.WebViewFallbackViewModel",
+ "usr": "s:8Workflow015WebViewFallbackC5ModelC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV4nameSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV4nameSSvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9viewModel3logAC8Workflow07WebViewfmI0C_3LogAIVtcfc",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9viewModel3logAC8Workflow07WebViewfmI0C_3LogAIVtcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "Custom",
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.InProcessWebviewFallbackController?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InProcessWebviewFallbackController",
+ "printedName": "LinkKit.InProcessWebviewFallbackController",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV4nameSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV4nameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC5coderACSgSo7NSCoderC_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC11viewDidLoadyyF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidAppear",
+ "printedName": "viewDidAppear(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)viewDidAppear:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC13viewDidAppearyySbF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidAppear:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "version",
- "printedName": "version",
+ "name": "log",
+ "printedName": "log",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV7versionSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV7versionSSvp",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC3log33_32F4DB776C6A6928E36575C991298D05LL3LogAFVvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC3log33_32F4DB776C6A6928E36575C991298D05LL3LogAFVvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "stackView",
+ "printedName": "stackView",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UIStackView",
+ "printedName": "UIKit.UIStackView",
+ "usr": "c:objc(cs)UIStackView"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9stackView33_32F4DB776C6A6928E36575C991298D05LLSo07UIStackI0Cvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9stackView33_32F4DB776C6A6928E36575C991298D05LLSo07UIStackI0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
"fixedbinaryorder": 1,
"isLet": true,
- "hasStorage": true,
- "accessors": [
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "webView",
+ "printedName": "webView",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC7webView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebI0Cvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebI0Cvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 2,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "popupWebView",
+ "printedName": "popupWebView",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "WebKit.WKWebView?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV7versionSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV7versionSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC12popupWebView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebJ0CSgvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC12popupWebView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebJ0CSgvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 3,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "viewModel",
+ "printedName": "viewModel",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WebViewFallbackViewModel",
+ "printedName": "Workflow.WebViewFallbackViewModel",
+ "usr": "s:8Workflow015WebViewFallbackC5ModelC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9viewModel33_32F4DB776C6A6928E36575C991298D05LL8Workflow07WebViewfsI0Cvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9viewModel33_32F4DB776C6A6928E36575C991298D05LL8Workflow07WebViewfsI0Cvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 4,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "id",
- "printedName": "id",
+ "name": "urlObserver",
+ "printedName": "urlObserver",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "AppCore.Observer?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Observer",
+ "printedName": "AppCore.Observer",
+ "usr": "s:7AppCore8ObserverC"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV2idSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV2idSSvp",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC11urlObserver33_32F4DB776C6A6928E36575C991298D05LL7AppCore0I0CSgvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC11urlObserver33_32F4DB776C6A6928E36575C991298D05LL7AppCore0I0CSgvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 5,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "webAuthenticationSession",
+ "printedName": "webAuthenticationSession",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ProtocolComposition",
+ "printedName": "Any"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV2idSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV2idSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC24webAuthenticationSession33_32F4DB776C6A6928E36575C991298D05LLypSgvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC24webAuthenticationSession33_32F4DB776C6A6928E36575C991298D05LLypSgvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 6,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "build",
- "printedName": "build",
+ "name": "$__lazy_storage_$_navigateBack",
+ "printedName": "$__lazy_storage_$_navigateBack",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "(() -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "() -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV5buildSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV5buildSSvp",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC30$__lazy_storage_$_navigateBack33_32F4DB776C6A6928E36575C991298D05LLyycSgvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC30$__lazy_storage_$_navigateBack33_32F4DB776C6A6928E36575C991298D05LLyycSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "Final"
],
- "fixedbinaryorder": 3,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 7,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "InProcessWebviewFallbackController",
+ "printedName": "LinkKit.InProcessWebviewFallbackController",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -49452,264 +44262,431 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV5buildSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV5buildSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "branch",
- "printedName": "branch",
- "children": [
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV6branchSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV6branchSSvp",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
],
- "fixedbinaryorder": 4,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:createWebViewWith:for:windowFeatures:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "WebKit.WKWebView?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV6branchSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV6branchSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebViewConfiguration",
+ "printedName": "WebKit.WKWebViewConfiguration",
+ "usr": "c:objc(cs)WKWebViewConfiguration"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKNavigationAction",
+ "printedName": "WebKit.WKNavigationAction",
+ "usr": "c:objc(cs)WKNavigationAction"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWindowFeatures",
+ "printedName": "WebKit.WKWindowFeatures",
+ "usr": "c:objc(cs)WKWindowFeatures"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_09createWebI4With3for14windowFeaturesSo05WKWebI0CSgAI_So0pI13ConfigurationCSo18WKNavigationActionCSo08WKWindowO0CtF",
+ "moduleName": "LinkKit",
+ "objc_name": "webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "commit",
- "printedName": "commit",
+ "kind": "Function",
+ "name": "webViewDidClose",
+ "printedName": "webViewDidClose(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV6commitSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV6commitSSvp",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webViewDidClose:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC15webViewDidCloseyySo05WKWebI0CF",
"moduleName": "LinkKit",
+ "objc_name": "webViewDidClose:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "fixedbinaryorder": 5,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:decideMediaCapturePermissionsFor:initiatedBy:type:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV6commitSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV6commitSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "WKPermissionDecision",
+ "printedName": "WebKit.WKPermissionDecision",
+ "usr": "c:@E@WKPermissionDecision"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKSecurityOrigin",
+ "printedName": "WebKit.WKSecurityOrigin",
+ "usr": "c:objc(cs)WKSecurityOrigin"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKFrameInfo",
+ "printedName": "WebKit.WKFrameInfo",
+ "usr": "c:objc(cs)WKFrameInfo"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKMediaCaptureType",
+ "printedName": "WebKit.WKMediaCaptureType",
+ "usr": "c:@E@WKMediaCaptureType"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_32decideMediaCapturePermissionsFor11initiatedBy4typeSo20WKPermissionDecisionVSo05WKWebI0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaL4TypeVtYaF",
+ "moduleName": "LinkKit",
+ "intro_iOS": "15.0",
+ "objc_name": "webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl",
+ "Available"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "reactNativeSDKVersion",
- "printedName": "reactNativeSDKVersion",
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:didFinish:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ImplicitlyUnwrappedOptional",
+ "printedName": "WebKit.WKNavigation?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "WKNavigation",
+ "printedName": "WebKit.WKNavigation",
+ "usr": "c:objc(cs)WKNavigation"
}
],
"usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvp",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:didFinishNavigation:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_9didFinishySo05WKWebI0C_So12WKNavigationCSgtF",
"moduleName": "LinkKit",
+ "objc_name": "webView:didFinishNavigation:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "fixedbinaryorder": 6,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:didCommit:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ImplicitlyUnwrappedOptional",
+ "printedName": "WebKit.WKNavigation?",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "WKNavigation",
+ "printedName": "WebKit.WKNavigation",
+ "usr": "c:objc(cs)WKNavigation"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:didCommitNavigation:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_9didCommitySo05WKWebI0C_So12WKNavigationCSgtF",
+ "moduleName": "LinkKit",
+ "objc_name": "webView:didCommitNavigation:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "isRunningFlutterSDK",
- "printedName": "isRunningFlutterSDK",
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:decidePolicyFor:decisionHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 7,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKNavigationAction",
+ "printedName": "WebKit.WKNavigationAction",
+ "usr": "c:objc(cs)WKNavigationAction"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(WebKit.WKNavigationActionPolicy) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKNavigationActionPolicy",
+ "printedName": "WebKit.WKNavigationActionPolicy",
+ "usr": "c:@E@WKNavigationActionPolicy"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:decidePolicyForNavigationAction:decisionHandler:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_15decidePolicyFor15decisionHandlerySo05WKWebI0C_So18WKNavigationActionCySo0pqK0VctF",
+ "moduleName": "LinkKit",
+ "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
+ "kind": "Function",
+ "name": "presentationAnchor",
+ "printedName": "presentationAnchor(for:)",
"children": [
{
"kind": "TypeNominal",
- "name": "SDKInfoProvider",
- "printedName": "LinkKit.SDKInfoProvider",
- "usr": "s:7LinkKit15SDKInfoProviderV"
+ "name": "UIWindow",
+ "printedName": "UIKit.UIWindow",
+ "usr": "c:objc(cs)UIWindow"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ASWebAuthenticationSession",
+ "printedName": "AuthenticationServices.ASWebAuthenticationSession",
+ "usr": "c:objc(cs)ASWebAuthenticationSession"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit15SDKInfoProviderVACycfc",
- "mangledName": "$s7LinkKit15SDKInfoProviderVACycfc",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)presentationAnchorForWebAuthenticationSession:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "objc_name": "presentationAnchorForWebAuthenticationSession:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Struct",
- "usr": "s:7LinkKit15SDKInfoProviderV",
- "mangledName": "$s7LinkKit15SDKInfoProviderV",
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
],
"conformances": [
{
"kind": "Conformance",
- "name": "SDKInfoProviding",
- "printedName": "SDKInfoProviding",
- "usr": "s:8Workflow16SDKInfoProvidingP",
- "mangledName": "$s8Workflow16SDKInfoProvidingP"
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
},
{
"kind": "Conformance",
@@ -49732,23 +44709,10 @@
},
{
"kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
+ "name": "SafariServices",
+ "printedName": "SafariServices",
"declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
+ "moduleName": "LinkKit"
},
{
"kind": "Import",
@@ -49793,258 +44757,92 @@
},
{
"kind": "TypeDecl",
- "name": "InProcessWebviewFallbackController",
- "printedName": "InProcessWebviewFallbackController",
+ "name": "EmbeddedSearchView",
+ "printedName": "EmbeddedSearchView",
"children": [
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(viewModel:log:)",
+ "printedName": "init(viewModel:handler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "InProcessWebviewFallbackController",
- "printedName": "LinkKit.InProcessWebviewFallbackController",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ "name": "EmbeddedSearchView",
+ "printedName": "LinkKit.EmbeddedSearchView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchView"
},
{
"kind": "TypeNominal",
- "name": "WebViewFallbackViewModel",
- "printedName": "Workflow.WebViewFallbackViewModel",
- "usr": "s:8Workflow015WebViewFallbackC5ModelC"
+ "name": "EmbeddedSearchViewModel",
+ "printedName": "Workflow.EmbeddedSearchViewModel",
+ "usr": "s:8Workflow23EmbeddedSearchViewModelC"
},
{
"kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9viewModel3logAC8Workflow07WebViewfmI0C_3LogAIVtcfc",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9viewModel3logAC8Workflow07WebViewfmI0C_3LogAIVtcfc",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC9viewModel7handlerAC8Workflow0cdeG0C_AA7Handler_ptcfc",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC9viewModel7handlerAC8Workflow0cdeG0C_AA7Handler_ptcfc",
"moduleName": "LinkKit",
"declAttributes": [
"Custom",
- "AccessControl",
"RawDocComment"
],
"init_kind": "Designated"
},
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.InProcessWebviewFallbackController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InProcessWebviewFallbackController",
- "printedName": "LinkKit.InProcessWebviewFallbackController",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)initWithCoder:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC5coderACSgSo7NSCoderC_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)viewDidLoad",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC11viewDidLoadyyF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC13viewDidAppearyySbF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "log",
- "printedName": "log",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC3log33_32F4DB776C6A6928E36575C991298D05LL3LogAFVvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC3log33_32F4DB776C6A6928E36575C991298D05LL3LogAFVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "stackView",
- "printedName": "stackView",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIStackView",
- "printedName": "UIKit.UIStackView",
- "usr": "c:objc(cs)UIStackView"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9stackView33_32F4DB776C6A6928E36575C991298D05LLSo07UIStackI0Cvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9stackView33_32F4DB776C6A6928E36575C991298D05LLSo07UIStackI0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
- },
{
"kind": "Var",
- "name": "webView",
- "printedName": "webView",
+ "name": "handler",
+ "printedName": "handler",
"children": [
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC7webView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebI0Cvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebI0Cvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
"Custom",
"Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
+ "fixedbinaryorder": 0,
"isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "popupWebView",
- "printedName": "popupWebView",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "WebKit.WKWebView?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvg",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC12popupWebView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebJ0CSgvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC12popupWebView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebJ0CSgvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 3,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
@@ -50053,49 +44851,42 @@
"children": [
{
"kind": "TypeNominal",
- "name": "WebViewFallbackViewModel",
- "printedName": "Workflow.WebViewFallbackViewModel",
- "usr": "s:8Workflow015WebViewFallbackC5ModelC"
+ "name": "EmbeddedSearchViewModel",
+ "printedName": "Workflow.EmbeddedSearchViewModel",
+ "usr": "s:8Workflow23EmbeddedSearchViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9viewModel33_32F4DB776C6A6928E36575C991298D05LL8Workflow07WebViewfsI0Cvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9viewModel33_32F4DB776C6A6928E36575C991298D05LL8Workflow07WebViewfsI0Cvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC9viewModel33_56CDF6B379D3F8DEF2746A7281DF5920LL8Workflow0cdeG0Cvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC9viewModel33_56CDF6B379D3F8DEF2746A7281DF5920LL8Workflow0cdeG0Cvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
"Custom",
"Final",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 4,
+ "fixedbinaryorder": 1,
"isLet": true,
"hasStorage": true
},
{
"kind": "Var",
- "name": "urlObserver",
- "printedName": "urlObserver",
+ "name": "webView",
+ "printedName": "webView",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "AppCore.Observer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Observer",
- "printedName": "AppCore.Observer",
- "usr": "s:7AppCore8ObserverC"
- }
- ],
- "usr": "s:Sq"
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC11urlObserver33_32F4DB776C6A6928E36575C991298D05LL7AppCore0I0CSgvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC11urlObserver33_32F4DB776C6A6928E36575C991298D05LL7AppCore0I0CSgvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC03webE033_56CDF6B379D3F8DEF2746A7281DF5920LLSo05WKWebE0Cvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC03webE033_56CDF6B379D3F8DEF2746A7281DF5920LLSo05WKWebE0Cvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
@@ -50105,31 +44896,33 @@
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 5,
+ "fixedbinaryorder": 2,
+ "isLet": true,
"hasStorage": true
},
{
"kind": "Var",
- "name": "webAuthenticationSession",
- "printedName": "webAuthenticationSession",
+ "name": "embeddedSearchAndSelectView",
+ "printedName": "embeddedSearchAndSelectView",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Any?",
+ "printedName": "LinkKit.EmbeddedSearchAndSelectView?",
"children": [
{
"kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
+ "name": "EmbeddedSearchAndSelectView",
+ "printedName": "LinkKit.EmbeddedSearchAndSelectView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC24webAuthenticationSession33_32F4DB776C6A6928E36575C991298D05LLypSgvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC24webAuthenticationSession33_32F4DB776C6A6928E36575C991298D05LLypSgvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC08embeddedd9AndSelectE033_56CDF6B379D3F8DEF2746A7281DF5920LLAA0cdghE0CSgvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC08embeddedd9AndSelectE033_56CDF6B379D3F8DEF2746A7281DF5920LLAA0cdghE0CSgvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
@@ -50137,131 +44930,118 @@
"HasInitialValue",
"Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 6,
+ "fixedbinaryorder": 3,
"hasStorage": true
},
{
"kind": "Var",
- "name": "$__lazy_storage_$_navigateBack",
- "printedName": "$__lazy_storage_$_navigateBack",
+ "name": "activityIndicator",
+ "printedName": "activityIndicator",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "(() -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "usr": "s:Sq"
+ "name": "PlaidActivityIndicator",
+ "printedName": "Threads.PlaidActivityIndicator",
+ "usr": "c:@M@Threads@objc(cs)PlaidActivityIndicator"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC30$__lazy_storage_$_navigateBack33_32F4DB776C6A6928E36575C991298D05LLyycSgvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC30$__lazy_storage_$_navigateBack33_32F4DB776C6A6928E36575C991298D05LLyycSgvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC17activityIndicator33_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads013PlaidActivityG0Cvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC17activityIndicator33_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads013PlaidActivityG0Cvp",
"moduleName": "LinkKit",
- "implicit": true,
"isInternal": true,
"declAttributes": [
"Custom",
"HasInitialValue",
+ "Final",
"HasStorage",
- "Final"
+ "AccessControl"
],
- "fixedbinaryorder": 7,
+ "fixedbinaryorder": 4,
+ "isLet": true,
"hasStorage": true
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
+ "kind": "Var",
+ "name": "$__lazy_storage_$_errorView",
+ "printedName": "$__lazy_storage_$_errorView",
"children": [
- {
- "kind": "TypeNominal",
- "name": "InProcessWebviewFallbackController",
- "printedName": "LinkKit.InProcessWebviewFallbackController",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
- },
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Threads.ErrorView?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ErrorView",
+ "printedName": "Threads.ErrorView",
+ "usr": "c:@M@Threads@objc(cs)ErrorView"
}
],
"usr": "s:Sq"
- },
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC023$__lazy_storage_$_errorE033_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads05ErrorE0CSgvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC023$__lazy_storage_$_errorE033_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads05ErrorE0CSgvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "HasStorage",
+ "Final"
+ ],
+ "fixedbinaryorder": 5,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "presentedViewController",
+ "printedName": "presentedViewController",
+ "children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "printedName": "UIKit.UIViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
],
"usr": "s:Sq"
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC09presentedE10Controller33_56CDF6B379D3F8DEF2746A7281DF5920LLSo06UIViewG0CSgvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC09presentedE10Controller33_56CDF6B379D3F8DEF2746A7281DF5920LLSo06UIViewG0CSgvp",
"moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
+ "isInternal": true,
"declAttributes": [
- "Dynamic",
- "ObjC",
"Custom",
- "Override"
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
],
- "init_kind": "Designated"
+ "fixedbinaryorder": 6,
+ "hasStorage": true
},
{
"kind": "Function",
"name": "webView",
- "printedName": "webView(_:createWebViewWith:for:windowFeatures:)",
+ "printedName": "webView(_:decidePolicyFor:decisionHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "WebKit.WKWebView?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- }
- ],
- "usr": "s:Sq"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
@@ -50269,12 +45049,6 @@
"printedName": "WebKit.WKWebView",
"usr": "c:objc(cs)WKWebView"
},
- {
- "kind": "TypeNominal",
- "name": "WKWebViewConfiguration",
- "printedName": "WebKit.WKWebViewConfiguration",
- "usr": "c:objc(cs)WKWebViewConfiguration"
- },
{
"kind": "TypeNominal",
"name": "WKNavigationAction",
@@ -50282,17 +45056,29 @@
"usr": "c:objc(cs)WKNavigationAction"
},
{
- "kind": "TypeNominal",
- "name": "WKWindowFeatures",
- "printedName": "WebKit.WKWindowFeatures",
- "usr": "c:objc(cs)WKWindowFeatures"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(WebKit.WKNavigationActionPolicy) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKNavigationActionPolicy",
+ "printedName": "WebKit.WKNavigationActionPolicy",
+ "usr": "c:@E@WKNavigationActionPolicy"
+ }
+ ]
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_09createWebI4With3for14windowFeaturesSo05WKWebI0CSgAI_So0pI13ConfigurationCSo18WKNavigationActionCSo08WKWindowO0CtF",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchView(im)webView:decidePolicyForNavigationAction:decisionHandler:",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC03webE0_15decidePolicyFor15decisionHandlerySo05WKWebE0C_So18WKNavigationActionCySo0mnH0VctF",
"moduleName": "LinkKit",
- "objc_name": "webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:",
+ "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:",
"declAttributes": [
"Final",
"ObjC",
@@ -50304,8 +45090,8 @@
},
{
"kind": "Function",
- "name": "webViewDidClose",
- "printedName": "webViewDidClose(_:)",
+ "name": "stateUpdated",
+ "printedName": "stateUpdated(to:)",
"children": [
{
"kind": "TypeNominal",
@@ -50314,81 +45100,88 @@
},
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "EmbeddedSearchState",
+ "printedName": "Workflow.EmbeddedSearchState",
+ "usr": "s:8Workflow19EmbeddedSearchStateO"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webViewDidClose:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC15webViewDidCloseyySo05WKWebI0CF",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC12stateUpdated2toy8Workflow0cD5StateO_tF",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC12stateUpdated2toy8Workflow0cD5StateO_tF",
"moduleName": "LinkKit",
- "objc_name": "webViewDidClose:",
"declAttributes": [
- "Final",
- "ObjC",
"Custom",
- "AccessControl"
+ "Final"
],
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webView",
- "printedName": "webView(_:decideMediaCapturePermissionsFor:initiatedBy:type:)",
+ "name": "open",
+ "printedName": "open(url:popupBehavior:)",
"children": [
{
"kind": "TypeNominal",
- "name": "WKPermissionDecision",
- "printedName": "WebKit.WKPermissionDecision",
- "usr": "c:@E@WKPermissionDecision"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
},
{
"kind": "TypeNominal",
- "name": "WKSecurityOrigin",
- "printedName": "WebKit.WKSecurityOrigin",
- "usr": "c:objc(cs)WKSecurityOrigin"
- },
+ "name": "EmbeddedSearchPopupBehavior",
+ "printedName": "Workflow.EmbeddedSearchPopupBehavior",
+ "usr": "s:8Workflow27EmbeddedSearchPopupBehaviorO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC4open3url13popupBehaviory10Foundation3URLV_8Workflow0cd5PopupI0OtF",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC4open3url13popupBehaviory10Foundation3URLV_8Workflow0cd5PopupI0OtF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "present",
+ "printedName": "present(modal:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "WKFrameInfo",
- "printedName": "WebKit.WKFrameInfo",
- "usr": "c:objc(cs)WKFrameInfo"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "WKMediaCaptureType",
- "printedName": "WebKit.WKMediaCaptureType",
- "usr": "c:@E@WKMediaCaptureType"
+ "name": "SDKModal",
+ "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_SDKInternalEvent.SDKModal",
+ "usr": "s:13WorkflowProto05Link_A29_Nodes_Panes_SDKInternalEventV8SDKModalV"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_32decideMediaCapturePermissionsFor11initiatedBy4typeSo20WKPermissionDecisionVSo05WKWebI0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaL4TypeVtYaF",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC7present5modaly13WorkflowProto0a1_H29_Nodes_Panes_SDKInternalEventV8SDKModalV_tF",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC7present5modaly13WorkflowProto0a1_H29_Nodes_Panes_SDKInternalEventV8SDKModalV_tF",
"moduleName": "LinkKit",
- "intro_iOS": "15.0",
- "objc_name": "webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:",
"declAttributes": [
- "Final",
- "ObjC",
"Custom",
- "AccessControl",
- "Available"
+ "Final"
],
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webView",
- "printedName": "webView(_:didFinish:)",
+ "name": "hideModal",
+ "printedName": "hideModal(hide:)",
"children": [
{
"kind": "TypeNominal",
@@ -50397,43 +45190,351 @@
},
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- },
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC9hideModal0F0ySb_tF",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC9hideModal0F0ySb_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchView",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIView",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "UIKit.UIView",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "EmbeddedSearchViewModelDelegate",
+ "printedName": "EmbeddedSearchViewModelDelegate",
+ "usr": "s:8Workflow31EmbeddedSearchViewModelDelegateP",
+ "mangledName": "$s8Workflow31EmbeddedSearchViewModelDelegateP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "__DefaultCustomPlaygroundQuickLookable",
+ "printedName": "__DefaultCustomPlaygroundQuickLookable",
+ "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
+ "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "LayoutArea",
+ "printedName": "LayoutArea",
+ "usr": "s:9AppCoreUI10LayoutAreaP",
+ "mangledName": "$s9AppCoreUI10LayoutAreaP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "FlutterLinkKit",
+ "printedName": "FlutterLinkKit",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "isRunningFlutter",
+ "printedName": "isRunningFlutter",
+ "children": [
{
"kind": "TypeNominal",
- "name": "ImplicitlyUnwrappedOptional",
- "printedName": "WebKit.WKNavigation?",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvpZ",
+ "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "WKNavigation",
- "printedName": "WebKit.WKNavigation",
- "usr": "c:objc(cs)WKNavigation"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvgZ",
+ "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvsZ",
+ "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvsZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvMZ",
+ "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvMZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "FlutterLinkKit",
+ "printedName": "LinkKit.FlutterLinkKit",
+ "usr": "s:7LinkKit07FlutteraB0V"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit07FlutteraB0VACycfc",
+ "mangledName": "$s7LinkKit07FlutteraB0VACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit07FlutteraB0V",
+ "mangledName": "$s7LinkKit07FlutteraB0V",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "RoutingNumberValidator",
+ "printedName": "RoutingNumberValidator",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "isValid",
+ "printedName": "isValid(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:didFinishNavigation:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_9didFinishySo05WKWebI0C_So12WKNavigationCSgtF",
+ "usr": "s:7LinkKit22RoutingNumberValidatorO7isValidySbSSFZ",
+ "mangledName": "$s7LinkKit22RoutingNumberValidatorO7isValidySbSSFZ",
"moduleName": "LinkKit",
- "objc_name": "webView:didFinishNavigation:",
+ "static": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
"AccessControl"
],
- "isFromExtension": true,
"funcSelfKind": "NonMutating"
- },
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit22RoutingNumberValidatorO",
+ "mangledName": "$s7LinkKit22RoutingNumberValidatorO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Handler",
+ "printedName": "Handler",
+ "children": [
{
"kind": "Function",
- "name": "webView",
- "printedName": "webView(_:didCommit:)",
+ "name": "open",
+ "printedName": "open(presentUsing:)",
"children": [
{
"kind": "TypeNominal",
@@ -50442,846 +45543,617 @@
},
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- },
- {
- "kind": "TypeNominal",
- "name": "ImplicitlyUnwrappedOptional",
- "printedName": "WebKit.WKNavigation?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "WKNavigation",
- "printedName": "WebKit.WKNavigation",
- "usr": "c:objc(cs)WKNavigation"
- }
- ],
- "usr": "s:Sq"
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:didCommitNavigation:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_9didCommitySo05WKWebI0C_So12WKNavigationCSgtF",
+ "usr": "s:7LinkKit7HandlerP4open12presentUsingyAA18PresentationMethodO_tF",
+ "mangledName": "$s7LinkKit7HandlerP4open12presentUsingyAA18PresentationMethodO_tF",
"moduleName": "LinkKit",
- "objc_name": "webView:didCommitNavigation:",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl",
"RawDocComment"
],
- "isFromExtension": true,
+ "reqNewWitnessTableEntry": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webView",
- "printedName": "webView(_:decidePolicyFor:decisionHandler:)",
+ "name": "createEmbeddedView",
+ "printedName": "createEmbeddedView(presentUsing:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
},
{
"kind": "TypeNominal",
- "name": "WKNavigationAction",
- "printedName": "WebKit.WKNavigationAction",
- "usr": "c:objc(cs)WKNavigationAction"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(WebKit.WKNavigationActionPolicy) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "WKNavigationActionPolicy",
- "printedName": "WebKit.WKNavigationActionPolicy",
- "usr": "c:@E@WKNavigationActionPolicy"
- }
- ]
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:decidePolicyForNavigationAction:decisionHandler:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_15decidePolicyFor15decisionHandlerySo05WKWebI0C_So18WKNavigationActionCySo0pqK0VctF",
+ "usr": "s:7LinkKit7HandlerP18createEmbeddedView12presentUsingSo6UIViewCAA18PresentationMethodO_tF",
+ "mangledName": "$s7LinkKit7HandlerP18createEmbeddedView12presentUsingSo6UIViewCAA18PresentationMethodO_tF",
"moduleName": "LinkKit",
- "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
+ "RawDocComment"
],
- "isFromExtension": true,
+ "reqNewWitnessTableEntry": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "presentationAnchor",
- "printedName": "presentationAnchor(for:)",
+ "name": "resumeAfterTermination",
+ "printedName": "resumeAfterTermination(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "UIWindow",
- "printedName": "UIKit.UIWindow",
- "usr": "c:objc(cs)UIWindow"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "ASWebAuthenticationSession",
- "printedName": "AuthenticationServices.ASWebAuthenticationSession",
- "usr": "c:objc(cs)ASWebAuthenticationSession"
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)presentationAnchorForWebAuthenticationSession:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF",
+ "usr": "s:7LinkKit7HandlerP22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "mangledName": "$s7LinkKit7HandlerP22resumeAfterTermination4fromy10Foundation3URLV_tF",
"moduleName": "LinkKit",
- "objc_name": "presentationAnchorForWebAuthenticationSession:",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
+ "RawDocComment"
],
- "isFromExtension": true,
+ "reqNewWitnessTableEntry": true,
"funcSelfKind": "NonMutating"
}
],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC",
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit7HandlerP",
+ "mangledName": "$s7LinkKit7HandlerP",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
"AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "SafariServices",
- "printedName": "SafariServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "WebKit",
- "printedName": "WebKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
+ "RawDocComment"
]
},
{
"kind": "Import",
- "name": "AuthenticationServices",
- "printedName": "AuthenticationServices",
+ "name": "Foundation",
+ "printedName": "Foundation",
"declKind": "Import",
"moduleName": "LinkKit"
},
{
"kind": "TypeDecl",
- "name": "EmbeddedSearchView",
- "printedName": "EmbeddedSearchView",
+ "name": "InvalidInputErrorCode",
+ "printedName": "InvalidInputErrorCode",
"children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(viewModel:handler:)",
+ "kind": "Var",
+ "name": "invalidApiKeys",
+ "printedName": "invalidApiKeys",
"children": [
{
- "kind": "TypeNominal",
- "name": "EmbeddedSearchView",
- "printedName": "LinkKit.EmbeddedSearchView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchView"
- },
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchViewModel",
- "printedName": "Workflow.EmbeddedSearchViewModel",
- "usr": "s:8Workflow23EmbeddedSearchViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18EmbeddedSearchViewC9viewModel7handlerAC8Workflow0cdeG0C_AA7Handler_ptcfc",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC9viewModel7handlerAC8Workflow0cdeG0C_AA7Handler_ptcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO14invalidApiKeysyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO14invalidApiKeysyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
"kind": "Var",
- "name": "handler",
- "printedName": "handler",
+ "name": "unauthorizedEnvironment",
+ "printedName": "unauthorizedEnvironment",
"children": [
{
- "kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvg",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO23unauthorizedEnvironmentyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO23unauthorizedEnvironmentyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "invalidAccessToken",
+ "printedName": "invalidAccessToken",
"children": [
{
- "kind": "TypeNominal",
- "name": "EmbeddedSearchViewModel",
- "printedName": "Workflow.EmbeddedSearchViewModel",
- "usr": "s:8Workflow23EmbeddedSearchViewModelC"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC9viewModel33_56CDF6B379D3F8DEF2746A7281DF5920LL8Workflow0cdeG0Cvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC9viewModel33_56CDF6B379D3F8DEF2746A7281DF5920LL8Workflow0cdeG0Cvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidAccessTokenyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidAccessTokenyA2CmF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "webView",
- "printedName": "webView",
+ "name": "invalidPublicToken",
+ "printedName": "invalidPublicToken",
"children": [
{
- "kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC03webE033_56CDF6B379D3F8DEF2746A7281DF5920LLSo05WKWebE0Cvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC03webE033_56CDF6B379D3F8DEF2746A7281DF5920LLSo05WKWebE0Cvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidPublicTokenyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidPublicTokenyA2CmF",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "embeddedSearchAndSelectView",
- "printedName": "embeddedSearchAndSelectView",
+ "name": "invalidProduct",
+ "printedName": "invalidProduct",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.EmbeddedSearchAndSelectView?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchAndSelectView",
- "printedName": "LinkKit.EmbeddedSearchAndSelectView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView"
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC08embeddedd9AndSelectE033_56CDF6B379D3F8DEF2746A7281DF5920LLAA0cdghE0CSgvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC08embeddedd9AndSelectE033_56CDF6B379D3F8DEF2746A7281DF5920LLAA0cdghE0CSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO14invalidProductyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO14invalidProductyA2CmF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 3,
- "hasStorage": true
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "activityIndicator",
- "printedName": "activityIndicator",
+ "name": "invalidAccountId",
+ "printedName": "invalidAccountId",
"children": [
{
- "kind": "TypeNominal",
- "name": "PlaidActivityIndicator",
- "printedName": "Threads.PlaidActivityIndicator",
- "usr": "c:@M@Threads@objc(cs)PlaidActivityIndicator"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC17activityIndicator33_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads013PlaidActivityG0Cvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC17activityIndicator33_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads013PlaidActivityG0Cvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO16invalidAccountIdyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO16invalidAccountIdyA2CmF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 4,
- "isLet": true,
- "hasStorage": true
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "$__lazy_storage_$_errorView",
- "printedName": "$__lazy_storage_$_errorView",
+ "name": "invalidInstitution",
+ "printedName": "invalidInstitution",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Threads.ErrorView?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ErrorView",
- "printedName": "Threads.ErrorView",
- "usr": "c:@M@Threads@objc(cs)ErrorView"
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC023$__lazy_storage_$_errorE033_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads05ErrorE0CSgvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC023$__lazy_storage_$_errorE033_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads05ErrorE0CSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidInstitutionyA2CmF",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
- ],
- "fixedbinaryorder": 5,
- "hasStorage": true
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "presentedViewController",
- "printedName": "presentedViewController",
+ "name": "tooManyVerificationAttempts",
+ "printedName": "tooManyVerificationAttempts",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC09presentedE10Controller33_56CDF6B379D3F8DEF2746A7281DF5920LLSo06UIViewG0CSgvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC09presentedE10Controller33_56CDF6B379D3F8DEF2746A7281DF5920LLSo06UIViewG0CSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO27tooManyVerificationAttemptsyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO27tooManyVerificationAttemptsyA2CmF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 6,
- "hasStorage": true
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "webView",
- "printedName": "webView(_:decidePolicyFor:decisionHandler:)",
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- },
- {
- "kind": "TypeNominal",
- "name": "WKNavigationAction",
- "printedName": "WebKit.WKNavigationAction",
- "usr": "c:objc(cs)WKNavigationAction"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(WebKit.WKNavigationActionPolicy) -> ()",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> (Swift.String) -> LinkKit.InvalidInputErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
},
{
"kind": "TypeNominal",
- "name": "WKNavigationActionPolicy",
- "printedName": "WebKit.WKNavigationActionPolicy",
- "usr": "c:@E@WKNavigationActionPolicy"
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
}
]
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchView(im)webView:decidePolicyForNavigationAction:decisionHandler:",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC03webE0_15decidePolicyFor15decisionHandlerySo05WKWebE0C_So18WKNavigationActionCySo0mnH0VctF",
- "moduleName": "LinkKit",
- "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
- "kind": "Function",
- "name": "stateUpdated",
- "printedName": "stateUpdated(to:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchState",
- "printedName": "Workflow.EmbeddedSearchState",
- "usr": "s:8Workflow19EmbeddedSearchStateO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18EmbeddedSearchViewC12stateUpdated2toy8Workflow0cD5StateO_tF",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC12stateUpdated2toy8Workflow0cD5StateO_tF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6stringACSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final"
+ "AccessControl"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "init_kind": "Designated"
},
{
- "kind": "Function",
- "name": "open",
- "printedName": "open(url:popupBehavior:)",
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- },
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchPopupBehavior",
- "printedName": "Workflow.EmbeddedSearchPopupBehavior",
- "usr": "s:8Workflow27EmbeddedSearchPopupBehaviorO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18EmbeddedSearchViewC4open3url13popupBehaviory10Foundation3URLV_8Workflow0cd5PopupI0OtF",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC4open3url13popupBehaviory10Foundation3URLV_8Workflow0cd5PopupI0OtF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final"
+ "AccessControl"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "present",
- "printedName": "present(modal:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "SDKModal",
- "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_SDKInternalEvent.SDKModal",
- "usr": "s:13WorkflowProto05Link_A29_Nodes_Panes_SDKInternalEventV8SDKModalV"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit18EmbeddedSearchViewC7present5modaly13WorkflowProto0a1_H29_Nodes_Panes_SDKInternalEventV8SDKModalV_tF",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC7present5modaly13WorkflowProto0a1_H29_Nodes_Panes_SDKInternalEventV8SDKModalV_tF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "hideModal",
- "printedName": "hideModal(hide:)",
+ "kind": "Var",
+ "name": "invalidApiKeysString",
+ "printedName": "invalidApiKeysString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18EmbeddedSearchViewC9hideModal0F0ySb_tF",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC9hideModal0F0ySb_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "Custom",
- "Final"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchView",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "EmbeddedSearchViewModelDelegate",
- "printedName": "EmbeddedSearchViewModelDelegate",
- "usr": "s:8Workflow31EmbeddedSearchViewModelDelegateP",
- "mangledName": "$s8Workflow31EmbeddedSearchViewModelDelegateP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
- {
- "kind": "Conformance",
- "name": "LayoutArea",
- "printedName": "LayoutArea",
- "usr": "s:9AppCoreUI10LayoutAreaP",
- "mangledName": "$s9AppCoreUI10LayoutAreaP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "FlutterLinkKit",
- "printedName": "FlutterLinkKit",
- "children": [
{
"kind": "Var",
- "name": "isRunningFlutter",
- "printedName": "isRunningFlutter",
+ "name": "unauthorizedEnvironmentString",
+ "printedName": "unauthorizedEnvironmentString",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvpZ",
- "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvpZ",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -51291,14 +46163,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvgZ",
- "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvgZ",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -51306,119 +46178,264 @@
"Transparent"
],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidAccessTokenString",
+ "printedName": "invalidAccessTokenString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidPublicTokenString",
+ "printedName": "invalidPublicTokenString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvsZ",
- "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvsZ",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
- "accessorKind": "set"
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidProductString",
+ "printedName": "invalidProductString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvMZ",
- "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvMZ",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
+ "kind": "Var",
+ "name": "invalidAccountIdString",
+ "printedName": "invalidAccountIdString",
"children": [
{
"kind": "TypeNominal",
- "name": "FlutterLinkKit",
- "printedName": "LinkKit.FlutterLinkKit",
- "usr": "s:7LinkKit07FlutteraB0V"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit07FlutteraB0VACycfc",
- "mangledName": "$s7LinkKit07FlutteraB0VACycfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvpZ",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit07FlutteraB0V",
- "mangledName": "$s7LinkKit07FlutteraB0V",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "RoutingNumberValidator",
- "printedName": "RoutingNumberValidator",
- "children": [
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
{
- "kind": "Function",
- "name": "isValid",
- "printedName": "isValid(_:)",
+ "kind": "Var",
+ "name": "invalidInstitutionString",
+ "printedName": "invalidInstitutionString",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "tooManyVerificationAttemptsString",
+ "printedName": "tooManyVerificationAttemptsString",
+ "children": [
{
"kind": "TypeNominal",
"name": "String",
@@ -51426,26 +46443,122 @@
"usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit22RoutingNumberValidatorO7isValidySbSSFZ",
- "mangledName": "$s7LinkKit22RoutingNumberValidatorO7isValidySbSSFZ",
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "funcSelfKind": "NonMutating"
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKInvalidInputErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKInvalidInputErrorCode",
+ "printedName": "LinkKit.PLKInvalidInputErrorCode",
+ "usr": "c:@E@PLKInvalidInputErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKInvalidInputErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKInvalidInputErrorCode",
+ "printedName": "LinkKit.PLKInvalidInputErrorCode",
+ "usr": "c:@E@PLKInvalidInputErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit22RoutingNumberValidatorO",
- "mangledName": "$s7LinkKit22RoutingNumberValidatorO",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
],
- "isEnumExhaustive": true,
"conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
{
"kind": "Conformance",
"name": "Sendable",
@@ -51758,34 +46871,16 @@
"moduleName": "Foundation",
"intro_Macosx": "10.8",
"intro_iOS": "6.0",
+ "intro_tvOS": "9.0",
+ "intro_watchOS": "2.0",
"declAttributes": [
+ "Available",
+ "Available",
"Available",
"Available"
],
"isExternal": true,
"conformances": [
- {
- "kind": "Conformance",
- "name": "ReferenceConvertible",
- "printedName": "ReferenceConvertible",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "ReferenceType",
- "printedName": "ReferenceType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSUUID",
- "printedName": "Foundation.NSUUID",
- "usr": "c:objc(cs)NSUUID"
- }
- ]
- }
- ],
- "usr": "s:10Foundation20ReferenceConvertibleP",
- "mangledName": "$s10Foundation20ReferenceConvertibleP"
- },
{
"kind": "Conformance",
"name": "Hashable",
@@ -51814,6 +46909,28 @@
"usr": "s:s8SendableP",
"mangledName": "$ss8SendableP"
},
+ {
+ "kind": "Conformance",
+ "name": "ReferenceConvertible",
+ "printedName": "ReferenceConvertible",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "ReferenceType",
+ "printedName": "ReferenceType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSUUID",
+ "printedName": "Foundation.NSUUID",
+ "usr": "c:objc(cs)NSUUID"
+ }
+ ]
+ }
+ ],
+ "usr": "s:10Foundation20ReferenceConvertibleP",
+ "mangledName": "$s10Foundation20ReferenceConvertibleP"
+ },
{
"kind": "Conformance",
"name": "CustomDebugStringConvertible",
@@ -51821,13 +46938,6 @@
"usr": "s:s28CustomDebugStringConvertibleP",
"mangledName": "$ss28CustomDebugStringConvertibleP"
},
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
{
"kind": "Conformance",
"name": "_ObjectiveCBridgeable",
@@ -51850,6 +46960,13 @@
"usr": "s:s21_ObjectiveCBridgeableP",
"mangledName": "$ss21_ObjectiveCBridgeableP"
},
+ {
+ "kind": "Conformance",
+ "name": "CustomReflectable",
+ "printedName": "CustomReflectable",
+ "usr": "s:s17CustomReflectableP",
+ "mangledName": "$ss17CustomReflectableP"
+ },
{
"kind": "Conformance",
"name": "Decodable",
@@ -51863,6 +46980,13 @@
"printedName": "Encodable",
"usr": "s:SE",
"mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
}
]
},
@@ -53203,7 +48327,11 @@
"moduleName": "Foundation",
"intro_Macosx": "10.10",
"intro_iOS": "8.0",
+ "intro_tvOS": "9.0",
+ "intro_watchOS": "2.0",
"declAttributes": [
+ "Available",
+ "Available",
"Available",
"Available"
],
@@ -53387,13 +48515,6 @@
"moduleName": "WorkflowProto",
"isExternal": true,
"conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
{
"kind": "Conformance",
"name": "Message",
@@ -53435,6 +48556,13 @@
"printedName": "Equatable",
"usr": "s:SQ",
"mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
@@ -53489,13 +48617,6 @@
"moduleName": "WorkflowProto",
"isExternal": true,
"conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
{
"kind": "Conformance",
"name": "Message",
@@ -53537,6 +48658,13 @@
"printedName": "Equatable",
"usr": "s:SQ",
"mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
@@ -53592,41 +48720,6 @@
"static": true,
"isFromExtension": true,
"funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "asAccountFilter",
- "printedName": "asAccountFilter()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : WorkflowProto.Link_Workflow_Primitives_LinkConfiguration.RepeatedAccountSubtype]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "RepeatedAccountSubtype",
- "printedName": "WorkflowProto.Link_Workflow_Primitives_LinkConfiguration.RepeatedAccountSubtype",
- "usr": "s:13WorkflowProto05Link_a12_Primitives_C13ConfigurationV22RepeatedAccountSubtypeV"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "s:Sa7LinkKitAA14AccountSubtypeORszlE02asC6FilterSDySS13WorkflowProto0a1_g12_Primitives_A13ConfigurationV08RepeatedcD0VGyF",
- "mangledName": "$sSa7LinkKitAA14AccountSubtypeORszlE02asC6FilterSDySS13WorkflowProto0a1_g12_Primitives_A13ConfigurationV08RepeatedcD0VGyF",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 == LinkKit.AccountSubtype>",
- "sugared_genericSig": "",
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
}
],
"declKind": "Struct",
@@ -54161,48 +49254,39 @@
},
{
"kind": "Conformance",
- "name": "DataProtocol",
- "printedName": "DataProtocol",
+ "name": "_ObjectiveCBridgeable",
+ "printedName": "_ObjectiveCBridgeable",
"children": [
{
"kind": "TypeWitness",
- "name": "Regions",
- "printedName": "Regions",
+ "name": "_ObjectiveCType",
+ "printedName": "_ObjectiveCType",
"children": [
{
"kind": "TypeNominal",
- "name": "CollectionOfOne",
- "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.UInt8]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt8",
- "printedName": "Swift.UInt8",
- "usr": "s:s5UInt8V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:s15CollectionOfOneV"
+ "name": "NSArray",
+ "printedName": "Foundation.NSArray",
+ "usr": "c:objc(cs)NSArray"
}
]
}
],
- "usr": "s:10Foundation12DataProtocolP",
- "mangledName": "$s10Foundation12DataProtocolP"
+ "usr": "s:s21_ObjectiveCBridgeableP",
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
},
{
"kind": "Conformance",
- "name": "MutableDataProtocol",
- "printedName": "MutableDataProtocol",
- "usr": "s:10Foundation19MutableDataProtocolP",
- "mangledName": "$s10Foundation19MutableDataProtocolP"
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "ContiguousBytes",
+ "printedName": "ContiguousBytes",
+ "usr": "s:10Foundation15ContiguousBytesP",
+ "mangledName": "$s10Foundation15ContiguousBytesP"
},
{
"kind": "Conformance",
@@ -54248,39 +49332,48 @@
},
{
"kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
+ "name": "DataProtocol",
+ "printedName": "DataProtocol",
"children": [
{
"kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
+ "name": "Regions",
+ "printedName": "Regions",
"children": [
{
"kind": "TypeNominal",
- "name": "NSArray",
- "printedName": "Foundation.NSArray",
- "usr": "c:objc(cs)NSArray"
+ "name": "CollectionOfOne",
+ "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[Swift.UInt8]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:s15CollectionOfOneV"
}
]
}
],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
+ "usr": "s:10Foundation12DataProtocolP",
+ "mangledName": "$s10Foundation12DataProtocolP"
},
{
"kind": "Conformance",
- "name": "ContiguousBytes",
- "printedName": "ContiguousBytes",
- "usr": "s:10Foundation15ContiguousBytesP",
- "mangledName": "$s10Foundation15ContiguousBytesP"
+ "name": "MutableDataProtocol",
+ "printedName": "MutableDataProtocol",
+ "usr": "s:10Foundation19MutableDataProtocolP",
+ "mangledName": "$s10Foundation19MutableDataProtocolP"
}
]
},
@@ -54475,127 +49568,154 @@
],
"usr": "s:10Foundation26DecodableWithConfigurationP",
"mangledName": "$s10Foundation26DecodableWithConfigurationP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PLKLinkTokenConfiguration",
- "printedName": "PLKLinkTokenConfiguration",
- "children": [
+ },
{
- "kind": "Var",
- "name": "toSwift",
- "printedName": "toSwift",
+ "kind": "Conformance",
+ "name": "Gesture",
+ "printedName": "Gesture",
"children": [
{
- "kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
- }
- ],
- "declKind": "Var",
- "usr": "s:So25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvp",
- "mangledName": "$sSo25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvp",
- "moduleName": "LinkKit",
- "isOpen": true,
- "isFromExtension": true,
- "accessors": [
+ "kind": "TypeWitness",
+ "name": "Value",
+ "printedName": "Value",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DependentMember",
+ "printedName": "τ_0_0.Value"
+ }
+ ]
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeWitness",
+ "name": "Body",
+ "printedName": "Body",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:So25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvg",
- "mangledName": "$sSo25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvg",
- "moduleName": "LinkKit",
- "isOpen": true,
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)PLKLinkTokenConfiguration",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "PLKLinkTokenConfiguration",
- "declAttributes": [
- "ObjC",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ ],
+ "usr": "s:7SwiftUI7GestureP",
+ "mangledName": "$s7SwiftUI7GestureP"
},
{
"kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
+ "name": "View",
+ "printedName": "View",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "Body",
+ "printedName": "Body",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:7SwiftUI4ViewP",
+ "mangledName": "$s7SwiftUI4ViewP"
},
{
"kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ "name": "TableRowContent",
+ "printedName": "TableRowContent",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "TableRowValue",
+ "printedName": "TableRowValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DependentMember",
+ "printedName": "τ_0_0.TableRowValue"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "TableRowBody",
+ "printedName": "TableRowBody",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:7SwiftUI15TableRowContentP",
+ "mangledName": "$s7SwiftUI15TableRowContentP"
},
{
"kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ "name": "Commands",
+ "printedName": "Commands",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "Body",
+ "printedName": "Body",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:7SwiftUI8CommandsP",
+ "mangledName": "$s7SwiftUI8CommandsP"
},
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "ToolbarContent",
+ "printedName": "ToolbarContent",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "Body",
+ "printedName": "Body",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:7SwiftUI14ToolbarContentP",
+ "mangledName": "$s7SwiftUI14ToolbarContentP"
},
{
"kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "CustomizableToolbarContent",
+ "printedName": "CustomizableToolbarContent",
+ "usr": "s:7SwiftUI26CustomizableToolbarContentP",
+ "mangledName": "$s7SwiftUI26CustomizableToolbarContentP"
}
]
},
{
"kind": "TypeDecl",
- "name": "PLKOAuthNonceConfiguration",
- "printedName": "PLKOAuthNonceConfiguration",
+ "name": "PLKLinkTokenConfiguration",
+ "printedName": "PLKLinkTokenConfiguration",
"children": [
{
"kind": "Var",
@@ -54604,14 +49724,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
}
],
"declKind": "Var",
- "usr": "s:So26PLKOAuthNonceConfigurationC7LinkKitE7toSwiftAC05OAuthbC0Vvp",
- "mangledName": "$sSo26PLKOAuthNonceConfigurationC7LinkKitE7toSwiftAC05OAuthbC0Vvp",
+ "usr": "s:So25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvp",
+ "mangledName": "$sSo25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvp",
"moduleName": "LinkKit",
"isOpen": true,
"isFromExtension": true,
@@ -54623,14 +49743,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
}
],
"declKind": "Accessor",
- "usr": "s:So26PLKOAuthNonceConfigurationC7LinkKitE7toSwiftAC05OAuthbC0Vvg",
- "mangledName": "$sSo26PLKOAuthNonceConfigurationC7LinkKitE7toSwiftAC05OAuthbC0Vvg",
+ "usr": "s:So25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvg",
+ "mangledName": "$sSo25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvg",
"moduleName": "LinkKit",
"isOpen": true,
"isFromExtension": true,
@@ -54640,10 +49760,10 @@
}
],
"declKind": "Class",
- "usr": "c:objc(cs)PLKOAuthNonceConfiguration",
+ "usr": "c:objc(cs)PLKLinkTokenConfiguration",
"moduleName": "LinkKit",
"isOpen": true,
- "objc_name": "PLKOAuthNonceConfiguration",
+ "objc_name": "PLKLinkTokenConfiguration",
"declAttributes": [
"ObjC",
"Dynamic"
@@ -54825,2525 +49945,4357 @@
"mangledName": "$sSH"
}
]
- },
- {
- "kind": "TypeDecl",
- "name": "PLKLinkPublicKeyConfiguration",
- "printedName": "PLKLinkPublicKeyConfiguration",
- "children": [
- {
- "kind": "Var",
- "name": "toSwift",
- "printedName": "toSwift",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ],
- "declKind": "Var",
- "usr": "s:So29PLKLinkPublicKeyConfigurationC7LinkKitE7toSwifts6ResultOyAC0ebcD0VSo7NSErrorCGvp",
- "mangledName": "$sSo29PLKLinkPublicKeyConfigurationC7LinkKitE7toSwifts6ResultOyAC0ebcD0VSo7NSErrorCGvp",
- "moduleName": "LinkKit",
- "isOpen": true,
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So29PLKLinkPublicKeyConfigurationC7LinkKitE7toSwifts6ResultOyAC0ebcD0VSo7NSErrorCGvg",
- "mangledName": "$sSo29PLKLinkPublicKeyConfigurationC7LinkKitE7toSwifts6ResultOyAC0ebcD0VSo7NSErrorCGvg",
- "moduleName": "LinkKit",
- "isOpen": true,
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)PLKLinkPublicKeyConfiguration",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "PLKLinkPublicKeyConfiguration",
- "declAttributes": [
- "ObjC",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- }
- ]
}
],
"json_format_version": 8
},
"ConstValues": [
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/PresentationMethod.swift",
+ "kind": "BooleanLiteral",
+ "offset": 523,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2763,
+ "length": 17,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2771,
+ "length": 1,
+ "value": "\".\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2779,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5662,
+ "length": 6,
+ "value": "\"type\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5694,
+ "length": 6,
+ "value": "\"code\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5662,
+ "length": 6,
+ "value": "\"type\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5694,
+ "length": 6,
+ "value": "\"code\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5755,
+ "length": 17,
+ "value": "\"INVALID_REQUEST\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5818,
+ "length": 15,
+ "value": "\"INVALID_INPUT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5883,
+ "length": 19,
+ "value": "\"INSTITUTION_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5953,
+ "length": 21,
+ "value": "\"RATE_LIMIT_EXCEEDED\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6016,
+ "length": 11,
+ "value": "\"API_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6070,
+ "length": 12,
+ "value": "\"ITEM_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6125,
+ "length": 12,
+ "value": "\"AUTH_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6187,
+ "length": 20,
+ "value": "\"ASSET_REPORT_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6249,
+ "length": 10,
+ "value": "\"INTERNAL\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 11798,
+ "length": 32,
+ "value": "\"BANK_INCOME_INSIGHTS_COMPLETED\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 11873,
+ "length": 13,
+ "value": "\"CLOSE_OAUTH\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 11924,
+ "length": 7,
+ "value": "\"ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 11968,
+ "length": 6,
+ "value": "\"EXIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12016,
+ "length": 12,
+ "value": "\"FAIL_OAUTH\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12068,
+ "length": 9,
+ "value": "\"HANDOFF\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12139,
+ "length": 34,
+ "value": "\"IDENTITY_VERIFICATION_START_STEP\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12234,
+ "length": 33,
+ "value": "\"IDENTITY_VERIFICATION_PASS_STEP\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12328,
+ "length": 33,
+ "value": "\"IDENTITY_VERIFICATION_FAIL_STEP\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12431,
+ "length": 43,
+ "value": "\"IDENTITY_VERIFICATION_PENDING_REVIEW_STEP\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12547,
+ "length": 46,
+ "value": "\"IDENTITY_VERIFICATION_PENDING_REVIEW_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12659,
+ "length": 38,
+ "value": "\"IDENTITY_VERIFICATION_CREATE_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12763,
+ "length": 38,
+ "value": "\"IDENTITY_VERIFICATION_RESUME_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12865,
+ "length": 36,
+ "value": "\"IDENTITY_VERIFICATION_PASS_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12965,
+ "length": 36,
+ "value": "\"IDENTITY_VERIFICATION_FAIL_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13060,
+ "length": 31,
+ "value": "\"IDENTITY_VERIFICATION_OPEN_UI\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13152,
+ "length": 33,
+ "value": "\"IDENTITY_VERIFICATION_RESUME_UI\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13245,
+ "length": 32,
+ "value": "\"IDENTITY_VERIFICATION_CLOSE_UI\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13334,
+ "length": 28,
+ "value": "\"MATCHED_SELECT_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13420,
+ "length": 30,
+ "value": "\"MATCHED_SELECT_VERIFY_METHOD\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13487,
+ "length": 6,
+ "value": "\"OPEN\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13537,
+ "length": 15,
+ "value": "\"OPEN_MY_PLAID\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13594,
+ "length": 12,
+ "value": "\"OPEN_OAUTH\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13656,
+ "length": 20,
+ "value": "\"SEARCH_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13734,
+ "length": 29,
+ "value": "\"SELECT_DEGRADED_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13817,
+ "length": 25,
+ "value": "\"SELECT_DOWN_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13900,
+ "length": 29,
+ "value": "\"SELECT_FILTERED_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13979,
+ "length": 20,
+ "value": "\"SELECT_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14043,
+ "length": 14,
+ "value": "\"SELECT_BRAND\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14104,
+ "length": 18,
+ "value": "\"SELECT_AUTH_TYPE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14174,
+ "length": 23,
+ "value": "\"SUBMIT_ACCOUNT_NUMBER\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14245,
+ "length": 18,
+ "value": "\"SUBMIT_DOCUMENTS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14318,
+ "length": 26,
+ "value": "\"SUBMIT_DOCUMENTS_SUCCESS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14397,
+ "length": 24,
+ "value": "\"SUBMIT_DOCUMENTS_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14473,
+ "length": 23,
+ "value": "\"SUBMIT_ROUTING_NUMBER\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14542,
+ "length": 17,
+ "value": "\"VIEW_DATA_TYPES\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14603,
+ "length": 14,
+ "value": "\"SUBMIT_PHONE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14665,
+ "length": 19,
+ "value": "\"SKIP_SUBMIT_PHONE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14728,
+ "length": 14,
+ "value": "\"VERIFY_PHONE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14792,
+ "length": 20,
+ "value": "\"SUBMIT_CREDENTIALS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14854,
+ "length": 12,
+ "value": "\"SUBMIT_MFA\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14913,
+ "length": 17,
+ "value": "\"TRANSITION_VIEW\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14984,
+ "length": 25,
+ "value": "\"CONNECT_NEW_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 778,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1342,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 1791,
+ "length": 52,
+ "value": "\"Transitioning from \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 1822,
+ "length": 2,
+ "value": "\" to \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 1837,
+ "length": 4,
+ "value": "\" pane\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1870,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2110,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2982,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
"kind": "StringLiteral",
"offset": 329,
"length": 23,
"value": "\"LinkKit.PlaidLinkViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/SearchAndSelectViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AccountSubtype.swift",
+ "kind": "StringLiteral",
+ "offset": 2593,
+ "length": 24,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AccountSubtype.swift",
+ "kind": "StringLiteral",
+ "offset": 2601,
+ "length": 1,
+ "value": "\".\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AccountSubtype.swift",
+ "kind": "StringLiteral",
+ "offset": 2616,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 764,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 1061,
+ "length": 36,
+ "value": "\"Can transition on the Main Thread.\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 1993,
+ "offset": 1275,
"length": 12,
- "value": "\"selectCell\""
+ "value": "\"layoutView\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/SearchAndSelectViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 72,
- "length": 29,
- "value": "\"LinkKit.SearchAndSelectViewController\""
+ "offset": 2436,
+ "length": 14,
+ "value": "\"PushOutgoing\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/SearchAndSelectViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "Array",
+ "offset": 2516,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 72,
- "length": 29,
- "value": "\"LinkKit.SearchAndSelectViewController\""
+ "offset": 2800,
+ "length": 14,
+ "value": "\"PushIncoming\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 3208,
+ "length": 13,
+ "value": "\"PopOutgoing\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "Array",
+ "offset": 3287,
+ "length": 2,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 3572,
+ "length": 13,
+ "value": "\"PopIncoming\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "Array",
"offset": 4967,
"length": 2,
"value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5152,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5205,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5214,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5225,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5235,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5622,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5838,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6001,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 6806,
+ "length": 15,
+ "value": "\"scrollContent\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 7026,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7371,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 7568,
+ "length": 23,
+ "value": "\"fixedFooterScrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7659,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 7934,
+ "length": 26,
+ "value": "\"fixedFooterScrollContent\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8031,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 8388,
+ "length": 28,
+ "value": "\"fixedFooterFooterContainer\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8489,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 8907,
+ "length": 12,
+ "value": "\"navigation\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9040,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9225,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9409,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9642,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9735,
+ "length": 25,
+ "value": "\"scrollContent2container\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9962,
+ "length": 26,
+ "value": "\"scrollContent2scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 10110,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 10315,
+ "length": 17,
+ "value": "\"footerContainer\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10586,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 10689,
+ "length": 25,
+ "value": "\"footerComponentSafeArea\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "StringLiteral",
"offset": 494,
"length": 27,
"value": "\"LinkKit.ComponentPaneViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 467,
+ "length": 13,
+ "value": "\"Invalid URL\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 519,
+ "length": 14,
+ "value": "\"Missing data\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 578,
+ "length": 24,
+ "value": "\"API Error: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 601,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 657,
+ "length": 34,
+ "value": "\"Decoding Error: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 690,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 866,
+ "length": 60,
+ "value": "\"https:\/\/api.github.com\/repos\/plaid\/plaid-link-ios\/releases\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "Dictionary",
+ "offset": 589,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 735,
+ "length": 7,
+ "value": "\"Error\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 753,
+ "length": 18,
+ "value": "\"Alert view title\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 838,
+ "length": 83,
+ "value": "\"Your device is not configured to send mail.\nOpen Settings to add a mail account.\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 952,
+ "length": 20,
+ "value": "\"Alert view message\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 1034,
+ "length": 10,
+ "value": "\"Settings\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 1055,
+ "length": 54,
+ "value": "\"Open the device settings from alert with this button\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1235,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 1947,
+ "length": 4,
+ "value": "\"OK\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 1962,
+ "length": 26,
+ "value": "\"Acknowledge alert button\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2090,
+ "length": 16,
+ "value": "\"ACCOUNTS_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2153,
+ "length": 16,
+ "value": "\"ADDITION_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2212,
+ "length": 12,
+ "value": "\"AUTH_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2271,
+ "length": 16,
+ "value": "\"IDENTITY_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2332,
+ "length": 14,
+ "value": "\"INCOME_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2392,
+ "length": 16,
+ "value": "\"ITEM_GET_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2451,
+ "length": 12,
+ "value": "\"RATE_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2514,
+ "length": 20,
+ "value": "\"TRANSACTIONS_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "StringLiteral",
+ "offset": 233,
+ "length": 3,
+ "value": "\".\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 295,
+ "length": 1,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 622,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 739,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 755,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 785,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 902,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 918,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 948,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1728,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "StringLiteral",
+ "offset": 871,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
"kind": "IntegerLiteral",
"offset": 1333,
"length": 2,
"value": "16"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
"kind": "IntegerLiteral",
"offset": 1345,
"length": 2,
"value": "16"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
- "kind": "IntegerLiteral",
- "offset": 1735,
- "length": 2,
- "value": "54"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1735,
+ "length": 2,
+ "value": "54"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1747,
+ "length": 2,
+ "value": "20"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2190,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2251,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3779,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4505,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "StringLiteral",
+ "offset": 271,
+ "length": 24,
+ "value": "\"LinkKit.EmbeddedSearchModuleView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ApiErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 1078,
+ "length": 23,
+ "value": "\"INTERNAL_SERVER_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ApiErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 1153,
+ "length": 21,
+ "value": "\"PLANNED_MAINTENANCE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "IntegerLiteral",
+ "offset": 576,
+ "length": 2,
+ "value": "15"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "IntegerLiteral",
+ "offset": 608,
+ "length": 1,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "IntegerLiteral",
+ "offset": 687,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "StringLiteral",
+ "offset": 2119,
+ "length": 66,
+ "value": "\"Returning \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "StringLiteral",
+ "offset": 2152,
+ "length": 3,
+ "value": "\" for view model \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "StringLiteral",
+ "offset": 2184,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2824,
+ "length": 20,
+ "value": "\"requires_questions\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2895,
+ "length": 21,
+ "value": "\"requires_selections\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2961,
+ "length": 15,
+ "value": "\"requires_code\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3021,
+ "length": 15,
+ "value": "\"choose_device\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3088,
+ "length": 22,
+ "value": "\"requires_credentials\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3162,
+ "length": 23,
+ "value": "\"institution_not_found\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3242,
+ "length": 28,
+ "value": "\"requires_account_selection\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3323,
+ "length": 25,
+ "value": "\"continue_to_third_party\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Plaid.swift",
+ "kind": "StringLiteral",
+ "offset": 1086,
+ "length": 112,
+ "value": "\"linkTokenConfiguration.token: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Plaid.swift",
+ "kind": "StringLiteral",
+ "offset": 1148,
+ "length": 2,
+ "value": "\" is invalid, it must contain an environment name.\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Plaid.swift",
+ "kind": "StringLiteral",
+ "offset": 1723,
+ "length": 16,
+ "value": "\"com.plaid.link\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AuthErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 1019,
+ "length": 19,
+ "value": "\"PRODUCT_NOT_READY\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AuthErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 1091,
+ "length": 22,
+ "value": "\"VERIFICATION_EXPIRED\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 373,
+ "length": 10,
+ "value": "\"html_url\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 407,
+ "length": 10,
+ "value": "\"tag_name\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 482,
+ "length": 14,
+ "value": "\"published_at\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 373,
+ "length": 10,
+ "value": "\"html_url\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 407,
+ "length": 10,
+ "value": "\"tag_name\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 482,
+ "length": 14,
+ "value": "\"published_at\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
"kind": "IntegerLiteral",
- "offset": 1747,
+ "offset": 995,
"length": 2,
- "value": "20"
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
- "kind": "StringLiteral",
- "offset": 271,
- "length": 24,
- "value": "\"LinkKit.EmbeddedSearchModuleView\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1007,
+ "length": 2,
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
"kind": "BooleanLiteral",
- "offset": 9276,
- "length": 5,
- "value": "false"
+ "offset": 2052,
+ "length": 4,
+ "value": "true"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "Array",
- "offset": 15565,
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2636,
"length": 2,
- "value": "[]"
+ "value": "24"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 25183,
- "length": 12,
- "value": "\"event_name\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2648,
+ "length": 2,
+ "value": "24"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 25183,
- "length": 12,
- "value": "\"event_name\""
+ "offset": 3440,
+ "length": 16,
+ "value": "\"Primary button\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29672,
- "length": 8,
- "value": "\"assets\""
+ "offset": 595,
+ "length": 30,
+ "value": "\"https:\/\/production.plaid.com\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29718,
- "length": 6,
- "value": "\"auth\""
+ "offset": 686,
+ "length": 31,
+ "value": "\"https:\/\/development.plaid.com\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29771,
- "length": 16,
- "value": "\"deposit_switch\""
+ "offset": 774,
+ "length": 27,
+ "value": "\"https:\/\/sandbox.plaid.com\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29829,
- "length": 10,
- "value": "\"identity\""
+ "offset": 1012,
+ "length": 12,
+ "value": "\"production\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29879,
- "length": 8,
- "value": "\"income\""
+ "offset": 1071,
+ "length": 13,
+ "value": "\"development\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29932,
- "length": 13,
- "value": "\"investments\""
+ "offset": 1127,
+ "length": 9,
+ "value": "\"sandbox\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 29990,
- "length": 13,
- "value": "\"liabilities\""
+ "offset": 304,
+ "length": 7,
+ "value": "\"Plaid\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 30054,
- "length": 20,
- "value": "\"liabilities_report\""
+ "offset": 342,
+ "length": 9,
+ "value": "\"LinkKit\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 30125,
+ "offset": 510,
"length": 20,
- "value": "\"payment_initiation\""
+ "value": "\"ReactNativeLinkSdk\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 30191,
- "length": 14,
- "value": "\"transactions\""
+ "offset": 830,
+ "length": 8,
+ "value": "\"%@\/%@ \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 32362,
- "length": 32,
- "value": "\"pending_automatic_verification\""
+ "offset": 989,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 32452,
+ "offset": 1045,
"length": 29,
- "value": "\"pending_manual_verification\""
+ "value": "\"%@%@%@\/%@(%@) %@-%@ (%@ %@)\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 32530,
- "length": 19,
- "value": "\"manually_verified\""
+ "offset": 1293,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 32589,
- "length": 9,
- "value": "\"unknown\""
+ "offset": 1357,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37682,
- "length": 20,
- "value": "\"requires_questions\""
+ "offset": 826,
+ "length": 56,
+ "value": "\"Failed to decode MFAType from rawValue: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37753,
- "length": 21,
- "value": "\"requires_selections\""
+ "offset": 881,
+ "length": 1,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37819,
- "length": 15,
- "value": "\"requires_code\""
+ "offset": 1762,
+ "length": 6,
+ "value": "\"code\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37879,
- "length": 15,
- "value": "\"choose_device\""
+ "offset": 1808,
+ "length": 8,
+ "value": "\"device\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37946,
- "length": 22,
- "value": "\"requires_credentials\""
+ "offset": 1859,
+ "length": 11,
+ "value": "\"questions\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 38020,
- "length": 23,
- "value": "\"institution_not_found\""
+ "offset": 1914,
+ "length": 12,
+ "value": "\"selections\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
"kind": "StringLiteral",
- "offset": 38100,
- "length": 28,
- "value": "\"requires_account_selection\""
+ "offset": 407,
+ "length": 39,
+ "value": "\"init(frame:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
"kind": "StringLiteral",
- "offset": 38181,
- "length": 25,
- "value": "\"continue_to_third_party\""
+ "offset": 542,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 51838,
- "length": 32,
- "value": "\"BANK_INCOME_INSIGHTS_COMPLETED\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 706,
+ "length": 3,
+ "value": "118"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 51913,
- "length": 13,
- "value": "\"CLOSE_OAUTH\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 712,
+ "length": 3,
+ "value": "255"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 51964,
- "length": 7,
- "value": "\"ERROR\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 724,
+ "length": 3,
+ "value": "118"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52008,
- "length": 6,
- "value": "\"EXIT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 730,
+ "length": 3,
+ "value": "255"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52056,
- "length": 12,
- "value": "\"FAIL_OAUTH\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 741,
+ "length": 3,
+ "value": "118"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52108,
- "length": 9,
- "value": "\"HANDOFF\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 747,
+ "length": 3,
+ "value": "255"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52179,
- "length": 34,
- "value": "\"IDENTITY_VERIFICATION_START_STEP\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 759,
+ "length": 4,
+ "value": "0.20"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52274,
- "length": 33,
- "value": "\"IDENTITY_VERIFICATION_PASS_STEP\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 798,
+ "length": 1,
+ "value": "3"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52368,
- "length": 33,
- "value": "\"IDENTITY_VERIFICATION_FAIL_STEP\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 835,
+ "length": 3,
+ "value": "8.0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52471,
- "length": 43,
- "value": "\"IDENTITY_VERIFICATION_PENDING_REVIEW_STEP\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1385,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52587,
- "length": 46,
- "value": "\"IDENTITY_VERIFICATION_PENDING_REVIEW_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1480,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52699,
- "length": 38,
- "value": "\"IDENTITY_VERIFICATION_CREATE_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2805,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52803,
- "length": 38,
- "value": "\"IDENTITY_VERIFICATION_RESUME_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3196,
+ "length": 4,
+ "value": "0.49"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52905,
- "length": 36,
- "value": "\"IDENTITY_VERIFICATION_PASS_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3350,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53005,
- "length": 36,
- "value": "\"IDENTITY_VERIFICATION_FAIL_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3457,
+ "length": 1,
+ "value": "4"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53100,
- "length": 31,
- "value": "\"IDENTITY_VERIFICATION_OPEN_UI\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3525,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53192,
- "length": 33,
- "value": "\"IDENTITY_VERIFICATION_RESUME_UI\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3699,
+ "length": 2,
+ "value": "12"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53285,
- "length": 32,
- "value": "\"IDENTITY_VERIFICATION_CLOSE_UI\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3955,
+ "length": 2,
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53374,
- "length": 28,
- "value": "\"MATCHED_SELECT_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4114,
+ "length": 1,
+ "value": "4"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53460,
- "length": 30,
- "value": "\"MATCHED_SELECT_VERIFY_METHOD\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4184,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53527,
- "length": 6,
- "value": "\"OPEN\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4361,
+ "length": 2,
+ "value": "12"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53577,
- "length": 15,
- "value": "\"OPEN_MY_PLAID\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4621,
+ "length": 2,
+ "value": "32"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53634,
- "length": 12,
- "value": "\"OPEN_OAUTH\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4777,
+ "length": 1,
+ "value": "4"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53696,
- "length": 20,
- "value": "\"SEARCH_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4846,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53774,
- "length": 29,
- "value": "\"SELECT_DEGRADED_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5023,
+ "length": 2,
+ "value": "12"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53857,
- "length": 25,
- "value": "\"SELECT_DOWN_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5310,
+ "length": 3,
+ "value": "-32"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53940,
- "length": 29,
- "value": "\"SELECT_FILTERED_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5384,
+ "length": 2,
+ "value": "32"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54019,
- "length": 20,
- "value": "\"SELECT_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5880,
+ "length": 3,
+ "value": "0.2"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54083,
- "length": 14,
- "value": "\"SELECT_BRAND\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5978,
+ "length": 4,
+ "value": "0.95"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54144,
- "length": 18,
- "value": "\"SELECT_AUTH_TYPE\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5987,
+ "length": 4,
+ "value": "0.95"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54214,
- "length": 23,
- "value": "\"SUBMIT_ACCOUNT_NUMBER\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 6220,
+ "length": 3,
+ "value": "0.2"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54285,
- "length": 18,
- "value": "\"SUBMIT_DOCUMENTS\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7959,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54358,
- "length": 26,
- "value": "\"SUBMIT_DOCUMENTS_SUCCESS\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8144,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 54437,
- "length": 24,
- "value": "\"SUBMIT_DOCUMENTS_ERROR\""
+ "offset": 823,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54513,
- "length": 23,
- "value": "\"SUBMIT_ROUTING_NUMBER\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1390,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54582,
- "length": 17,
- "value": "\"VIEW_DATA_TYPES\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1664,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 54643,
- "length": 14,
- "value": "\"SUBMIT_PHONE\""
+ "offset": 356,
+ "length": 22,
+ "value": "\"LinkKit.TodoPaneViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
"kind": "StringLiteral",
- "offset": 54705,
- "length": 19,
- "value": "\"SKIP_SUBMIT_PHONE\""
+ "offset": 376,
+ "length": 11,
+ "value": "\"RNLinksdk\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
"kind": "StringLiteral",
- "offset": 54768,
- "length": 14,
- "value": "\"VERIFY_PHONE\""
+ "offset": 536,
+ "length": 12,
+ "value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
"kind": "StringLiteral",
- "offset": 54832,
- "length": 20,
- "value": "\"SUBMIT_CREDENTIALS\""
+ "offset": 965,
+ "length": 15,
+ "value": "\"0.0.0-unknown\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54894,
- "length": 12,
- "value": "\"SUBMIT_MFA\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "Dictionary",
+ "offset": 483,
+ "length": 3,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54953,
- "length": 17,
- "value": "\"TRANSITION_VIEW\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2661,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 55024,
- "length": 25,
- "value": "\"CONNECT_NEW_INSTITUTION\""
+ "offset": 3050,
+ "length": 31,
+ "value": "\"The input has to be a number.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 62943,
- "length": 12,
- "value": "\"ACCEPT_TOS\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3142,
+ "length": 1,
+ "value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 62997,
- "length": 11,
- "value": "\"CONNECTED\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3189,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63048,
- "length": 9,
- "value": "\"CONSENT\""
+ "offset": 3337,
+ "length": 52,
+ "value": "\"The input has to be a number between 0.00 and 1.00\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 63100,
- "length": 12,
- "value": "\"CREDENTIAL\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "Array",
+ "offset": 3730,
+ "length": 2,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63161,
- "length": 19,
- "value": "\"DATA_TRANSPARENCY\""
+ "offset": 5639,
+ "length": 31,
+ "value": "\"The input has to be a number.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 63236,
- "length": 27,
- "value": "\"DATA_TRANSPARENCY_CONSENT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "Array",
+ "offset": 6246,
+ "length": 2,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63319,
- "length": 26,
- "value": "\"DOCUMENTARY_VERIFICATION\""
+ "offset": 6299,
+ "length": 86,
+ "value": "\"The provided regex: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63383,
- "length": 7,
- "value": "\"ERROR\""
+ "offset": 6339,
+ "length": 2,
+ "value": "\" is invalid. This rule will count as passing.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63427,
- "length": 6,
- "value": "\"EXIT\""
+ "offset": 6536,
+ "length": 118,
+ "value": "\"Could not check that \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63474,
- "length": 11,
- "value": "\"KYC_CHECK\""
+ "offset": 6566,
+ "length": 7,
+ "value": "\" matches \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63529,
- "length": 14,
- "value": "\"SELFIE_CHECK\""
+ "offset": 6591,
+ "length": 3,
+ "value": "\" due to NSRange.init failing. This rule will count as passing.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 63583,
- "length": 9,
- "value": "\"LOADING\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "Array",
+ "offset": 6774,
+ "length": 2,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63639,
- "length": 17,
- "value": "\"MATCHED_CONSENT\""
+ "offset": 7312,
+ "length": 208,
+ "value": "\"Text Input with ID: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63706,
- "length": 20,
- "value": "\"MATCHED_CREDENTIAL\""
+ "offset": 7338,
+ "length": 5,
+ "value": "\" could not be checked for equality with Text Input of ID: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63769,
- "length": 13,
- "value": "\"MATCHED_MFA\""
+ "offset": 7424,
+ "length": 1,
+ "value": "\", due to no matching Text Input in \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63818,
- "length": 5,
- "value": "\"MFA\""
+ "offset": 7485,
+ "length": 1,
+ "value": "\". This rule will count as passing.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/LinkOOPWebViewController.swift",
"kind": "StringLiteral",
- "offset": 63863,
- "length": 9,
- "value": "\"NUMBERS\""
+ "offset": 572,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/LinkOOPWebViewController.swift",
"kind": "StringLiteral",
- "offset": 63929,
- "length": 28,
- "value": "\"NUMBERS_SELECT_INSTITUTION\""
+ "offset": 148,
+ "length": 24,
+ "value": "\"LinkKit.LinkOOPWebViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/LinkOOPWebViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4671,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InstitutionErrorCode.swift",
"kind": "StringLiteral",
- "offset": 63995,
- "length": 7,
- "value": "\"OAUTH\""
+ "offset": 1554,
+ "length": 18,
+ "value": "\"INSTITUTION_DOWN\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InstitutionErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64044,
- "length": 11,
- "value": "\"RECAPTCHA\""
+ "offset": 1630,
+ "length": 28,
+ "value": "\"INSTITUTION_NOT_RESPONDING\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InstitutionErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64097,
- "length": 12,
- "value": "\"RISK_CHECK\""
+ "offset": 1715,
+ "length": 27,
+ "value": "\"INSTITUTION_NOT_AVAILABLE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InstitutionErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64151,
- "length": 11,
- "value": "\"SCREENING\""
+ "offset": 1804,
+ "length": 33,
+ "value": "\"INSTITUTION_NO_LONGER_SUPPORTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64208,
+ "offset": 1995,
"length": 16,
- "value": "\"SELECT_ACCOUNT\""
+ "value": "\"MISSING_FIELDS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64271,
- "length": 18,
- "value": "\"SELECT_AUTH_TYPE\""
+ "offset": 2058,
+ "length": 16,
+ "value": "\"UNKNOWN_FIELDS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64333,
- "length": 14,
- "value": "\"SUBMIT_PHONE\""
+ "offset": 2120,
+ "length": 15,
+ "value": "\"INVALID_FIELD\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64391,
+ "offset": 2180,
"length": 14,
- "value": "\"VERIFY_PHONE\""
+ "value": "\"INVALID_BODY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64460,
- "length": 26,
- "value": "\"SELECT_SAVED_INSTITUTION\""
+ "offset": 2242,
+ "length": 17,
+ "value": "\"INVALID_HEADERS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64537,
- "length": 22,
- "value": "\"SELECT_SAVED_ACCOUNT\""
+ "offset": 2301,
+ "length": 11,
+ "value": "\"NOT_FOUND\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64603,
+ "offset": 2357,
"length": 14,
- "value": "\"SELECT_BRAND\""
- },
- {
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 64667,
- "length": 20,
- "value": "\"SELECT_INSTITUTION\""
- },
- {
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 64735,
- "length": 18,
- "value": "\"SUBMIT_DOCUMENTS\""
+ "value": "\"SANDBOX_ONLY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64808,
+ "offset": 6098,
"length": 26,
- "value": "\"SUBMIT_DOCUMENTS_SUCCESS\""
+ "value": "\"INSUFFICIENT_CREDENTIALS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64887,
- "length": 24,
- "value": "\"SUBMIT_DOCUMENTS_ERROR\""
+ "offset": 6176,
+ "length": 21,
+ "value": "\"INVALID_CREDENTIALS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64959,
- "length": 18,
- "value": "\"UPLOAD_DOCUMENTS\""
+ "offset": 6241,
+ "length": 13,
+ "value": "\"INVALID_MFA\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 65019,
- "length": 12,
- "value": "\"VERIFY_SMS\""
+ "offset": 6305,
+ "length": 21,
+ "value": "\"INVALID_SEND_METHOD\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 69560,
- "length": 6,
- "value": "\"code\""
+ "offset": 6382,
+ "length": 26,
+ "value": "\"INVALID_UPDATED_USERNAME\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 69606,
- "length": 8,
- "value": "\"device\""
+ "offset": 6452,
+ "length": 13,
+ "value": "\"ITEM_LOCKED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 69657,
- "length": 11,
- "value": "\"questions\""
+ "offset": 6516,
+ "length": 21,
+ "value": "\"ITEM_LOGIN_REQUIRED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 69712,
- "length": 12,
- "value": "\"selections\""
+ "offset": 6582,
+ "length": 15,
+ "value": "\"ITEM_NO_ERROR\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "BooleanLiteral",
- "offset": 70232,
- "length": 4,
- "value": "true"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6647,
+ "length": 20,
+ "value": "\"ITEM_NOT_SUPPORTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 75909,
- "length": 6,
- "value": "\"type\""
+ "offset": 6724,
+ "length": 27,
+ "value": "\"INCORRECT_DEPOSIT_AMOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 75941,
- "length": 6,
- "value": "\"code\""
+ "offset": 6802,
+ "length": 21,
+ "value": "\"USER_SETUP_REQUIRED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 75909,
- "length": 6,
- "value": "\"type\""
+ "offset": 6872,
+ "length": 19,
+ "value": "\"MFA_NOT_SUPPORTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 75941,
- "length": 6,
- "value": "\"code\""
+ "offset": 6935,
+ "length": 13,
+ "value": "\"NO_ACCOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76002,
- "length": 17,
- "value": "\"INVALID_REQUEST\""
+ "offset": 6996,
+ "length": 18,
+ "value": "\"NO_AUTH_ACCOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76065,
- "length": 15,
- "value": "\"INVALID_INPUT\""
+ "offset": 7068,
+ "length": 24,
+ "value": "\"NO_INVESTMENT_ACCOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76130,
- "length": 19,
- "value": "\"INSTITUTION_ERROR\""
+ "offset": 7145,
+ "length": 23,
+ "value": "\"NO_LIABILITY_ACCOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76200,
- "length": 21,
- "value": "\"RATE_LIMIT_EXCEEDED\""
+ "offset": 7217,
+ "length": 19,
+ "value": "\"PRODUCT_NOT_READY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76263,
- "length": 11,
- "value": "\"API_ERROR\""
+ "offset": 7290,
+ "length": 24,
+ "value": "\"PRODUCTS_NOT_SUPPORTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76317,
- "length": 12,
- "value": "\"ITEM_ERROR\""
+ "offset": 7366,
+ "length": 22,
+ "value": "\"INSTANT_MATCH_FAILED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/LinkEvent.swift",
"kind": "StringLiteral",
- "offset": 76372,
+ "offset": 1110,
"length": 12,
- "value": "\"AUTH_ERROR\""
+ "value": "\"event_name\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/LinkEvent.swift",
"kind": "StringLiteral",
- "offset": 76434,
- "length": 20,
- "value": "\"ASSET_REPORT_ERROR\""
+ "offset": 1110,
+ "length": 12,
+ "value": "\"event_name\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 76496,
- "length": 10,
- "value": "\"INTERNAL\""
+ "offset": 2438,
+ "length": 8,
+ "value": "\"assets\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78486,
- "length": 16,
- "value": "\"MISSING_FIELDS\""
+ "offset": 2484,
+ "length": 6,
+ "value": "\"auth\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78549,
+ "offset": 2537,
"length": 16,
- "value": "\"UNKNOWN_FIELDS\""
+ "value": "\"deposit_switch\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78611,
- "length": 15,
- "value": "\"INVALID_FIELD\""
+ "offset": 2595,
+ "length": 10,
+ "value": "\"identity\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78671,
- "length": 14,
- "value": "\"INVALID_BODY\""
+ "offset": 2645,
+ "length": 8,
+ "value": "\"income\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78733,
- "length": 17,
- "value": "\"INVALID_HEADERS\""
+ "offset": 2698,
+ "length": 13,
+ "value": "\"investments\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78792,
- "length": 11,
- "value": "\"NOT_FOUND\""
+ "offset": 2756,
+ "length": 13,
+ "value": "\"liabilities\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78848,
- "length": 14,
- "value": "\"SANDBOX_ONLY\""
+ "offset": 2820,
+ "length": 20,
+ "value": "\"liabilities_report\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 81867,
- "length": 18,
- "value": "\"INVALID_API_KEYS\""
+ "offset": 2891,
+ "length": 20,
+ "value": "\"payment_initiation\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 81942,
- "length": 26,
- "value": "\"UNAUTHORIZED_ENVIRONMENT\""
+ "offset": 2957,
+ "length": 14,
+ "value": "\"transactions\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkKitWorkflowBridge.swift",
"kind": "StringLiteral",
- "offset": 82020,
- "length": 22,
- "value": "\"INVALID_ACCESS_TOKEN\""
+ "offset": 4717,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 82094,
- "length": 22,
- "value": "\"INVALID_PUBLIC_TOKEN\""
+ "offset": 578,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 82164,
- "length": 17,
- "value": "\"INVALID_PRODUCT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 997,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 82231,
- "length": 20,
- "value": "\"INVALID_ACCOUNT_ID\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1295,
+ "length": 2,
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 82303,
- "length": 21,
- "value": "\"INVALID_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1374,
+ "length": 2,
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 82385,
- "length": 32,
- "value": "\"TOO_MANY_VERIFICATION_ATTEMPTS\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1730,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 84492,
- "length": 16,
- "value": "\"ACCOUNTS_LIMIT\""
+ "offset": 108,
+ "length": 25,
+ "value": "\"LinkKit.LoadingPaneViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 84555,
- "length": 16,
- "value": "\"ADDITION_LIMIT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/LinkTokenConfiguration.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1703,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 84614,
- "length": 12,
- "value": "\"AUTH_LIMIT\""
+ "offset": 2186,
+ "length": 218,
+ "value": "\"The Handler is being deinitialized before Link has completed or been exited. Did you forget to strongly reference the Handler object returned by `Plaid.create`?\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 84673,
- "length": 16,
- "value": "\"IDENTITY_LIMIT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6205,
+ "length": 3,
+ "value": "390"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 84734,
- "length": 14,
- "value": "\"INCOME_LIMIT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6218,
+ "length": 3,
+ "value": "690"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 84794,
- "length": 16,
- "value": "\"ITEM_GET_LIMIT\""
+ "offset": 10058,
+ "length": 39,
+ "value": "\"Ignoring onMailto on \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 84853,
- "length": 12,
- "value": "\"RATE_LIMIT\""
+ "offset": 10088,
+ "length": 1,
+ "value": "\" \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 84916,
- "length": 20,
- "value": "\"TRANSACTIONS_LIMIT\""
+ "offset": 10096,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 85999,
- "length": 23,
- "value": "\"INTERNAL_SERVER_ERROR\""
+ "offset": 10484,
+ "length": 50,
+ "value": "\"Link requires \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 86074,
- "length": 21,
- "value": "\"PLANNED_MAINTENANCE\""
+ "offset": 10507,
+ "length": 2,
+ "value": "\" to be a non-empty string.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92178,
- "length": 26,
- "value": "\"INSUFFICIENT_CREDENTIALS\""
+ "offset": 10789,
+ "length": 53,
+ "value": "\"Ignoring pane view model change on \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92256,
- "length": 21,
- "value": "\"INVALID_CREDENTIALS\""
+ "offset": 10833,
+ "length": 1,
+ "value": "\" \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92321,
- "length": 13,
- "value": "\"INVALID_MFA\""
+ "offset": 10841,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92385,
- "length": 21,
- "value": "\"INVALID_SEND_METHOD\""
+ "offset": 12433,
+ "length": 83,
+ "value": "\"Unexpected call to -startSession when state (\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92462,
- "length": 26,
- "value": "\"INVALID_UPDATED_USERNAME\""
+ "offset": 12487,
+ "length": 1,
+ "value": "\") is not .loadingSessionData\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92532,
- "length": 13,
- "value": "\"ITEM_LOCKED\""
+ "offset": 12624,
+ "length": 28,
+ "value": "\"Validation error: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92596,
- "length": 21,
- "value": "\"ITEM_LOGIN_REQUIRED\""
+ "offset": 12651,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92662,
- "length": 15,
- "value": "\"ITEM_NO_ERROR\""
+ "offset": 12685,
+ "length": 31,
+ "value": "\"Using token: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92727,
- "length": 20,
- "value": "\"ITEM_NOT_SUPPORTED\""
+ "offset": 12715,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 92804,
- "length": 27,
- "value": "\"INCORRECT_DEPOSIT_AMOUNTS\""
+ "offset": 8316,
+ "length": 12,
+ "value": "\"ACCEPT_TOS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 92882,
- "length": 21,
- "value": "\"USER_SETUP_REQUIRED\""
+ "offset": 8370,
+ "length": 11,
+ "value": "\"CONNECTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 92952,
- "length": 19,
- "value": "\"MFA_NOT_SUPPORTED\""
+ "offset": 8421,
+ "length": 9,
+ "value": "\"CONSENT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93015,
- "length": 13,
- "value": "\"NO_ACCOUNTS\""
+ "offset": 8473,
+ "length": 12,
+ "value": "\"CREDENTIAL\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93076,
- "length": 18,
- "value": "\"NO_AUTH_ACCOUNTS\""
+ "offset": 8534,
+ "length": 19,
+ "value": "\"DATA_TRANSPARENCY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93148,
- "length": 24,
- "value": "\"NO_INVESTMENT_ACCOUNTS\""
+ "offset": 8609,
+ "length": 27,
+ "value": "\"DATA_TRANSPARENCY_CONSENT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93225,
- "length": 23,
- "value": "\"NO_LIABILITY_ACCOUNTS\""
+ "offset": 8692,
+ "length": 26,
+ "value": "\"DOCUMENTARY_VERIFICATION\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93297,
- "length": 19,
- "value": "\"PRODUCT_NOT_READY\""
+ "offset": 8756,
+ "length": 7,
+ "value": "\"ERROR\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93370,
- "length": 24,
- "value": "\"PRODUCTS_NOT_SUPPORTED\""
+ "offset": 8800,
+ "length": 6,
+ "value": "\"EXIT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93446,
- "length": 22,
- "value": "\"INSTANT_MATCH_FAILED\""
+ "offset": 8847,
+ "length": 11,
+ "value": "\"KYC_CHECK\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 94472,
- "length": 19,
- "value": "\"PRODUCT_NOT_READY\""
+ "offset": 8902,
+ "length": 14,
+ "value": "\"SELFIE_CHECK\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 94544,
- "length": 22,
- "value": "\"VERIFICATION_EXPIRED\""
+ "offset": 8956,
+ "length": 9,
+ "value": "\"LOADING\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97460,
- "length": 21,
- "value": "\"PRODUCT_NOT_ENABLED\""
+ "offset": 9012,
+ "length": 17,
+ "value": "\"MATCHED_CONSENT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97530,
- "length": 18,
- "value": "\"DATA_UNAVAILABLE\""
+ "offset": 9079,
+ "length": 20,
+ "value": "\"MATCHED_CREDENTIAL\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97597,
- "length": 19,
- "value": "\"PRODUCT_NOT_READY\""
+ "offset": 9142,
+ "length": 13,
+ "value": "\"MATCHED_MFA\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97677,
- "length": 32,
- "value": "\"ASSET_REPORT_GENERATION_FAILED\""
+ "offset": 9191,
+ "length": 5,
+ "value": "\"MFA\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97756,
- "length": 16,
- "value": "\"INVALID_PARENT\""
+ "offset": 9236,
+ "length": 9,
+ "value": "\"NUMBERS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97824,
- "length": 22,
- "value": "\"INSIGHTS_NOT_ENABLED\""
+ "offset": 9302,
+ "length": 28,
+ "value": "\"NUMBERS_SELECT_INSTITUTION\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97908,
- "length": 33,
- "value": "\"INSIGHTS_PREVIOUSLY_NOT_ENABLED\""
+ "offset": 9368,
+ "length": 7,
+ "value": "\"OAUTH\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 99480,
- "length": 18,
- "value": "\"INSTITUTION_DOWN\""
+ "offset": 9417,
+ "length": 11,
+ "value": "\"RECAPTCHA\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 99556,
- "length": 28,
- "value": "\"INSTITUTION_NOT_RESPONDING\""
+ "offset": 9470,
+ "length": 12,
+ "value": "\"RISK_CHECK\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 99641,
- "length": 27,
- "value": "\"INSTITUTION_NOT_AVAILABLE\""
+ "offset": 9524,
+ "length": 11,
+ "value": "\"SCREENING\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 99730,
- "length": 33,
- "value": "\"INSTITUTION_NO_LONGER_SUPPORTED\""
+ "offset": 9581,
+ "length": 16,
+ "value": "\"SELECT_ACCOUNT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 373,
- "length": 10,
- "value": "\"html_url\""
+ "offset": 9644,
+ "length": 18,
+ "value": "\"SELECT_AUTH_TYPE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 407,
- "length": 10,
- "value": "\"tag_name\""
+ "offset": 9706,
+ "length": 14,
+ "value": "\"SUBMIT_PHONE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 482,
+ "offset": 9764,
"length": 14,
- "value": "\"published_at\""
+ "value": "\"VERIFY_PHONE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 373,
- "length": 10,
- "value": "\"html_url\""
+ "offset": 9833,
+ "length": 26,
+ "value": "\"SELECT_SAVED_INSTITUTION\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 407,
- "length": 10,
- "value": "\"tag_name\""
+ "offset": 9910,
+ "length": 22,
+ "value": "\"SELECT_SAVED_ACCOUNT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 482,
+ "offset": 9976,
"length": 14,
- "value": "\"published_at\""
+ "value": "\"SELECT_BRAND\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 304,
- "length": 7,
- "value": "\"Plaid\""
+ "offset": 10040,
+ "length": 20,
+ "value": "\"SELECT_INSTITUTION\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 342,
- "length": 9,
- "value": "\"LinkKit\""
+ "offset": 10108,
+ "length": 18,
+ "value": "\"SUBMIT_DOCUMENTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 510,
- "length": 20,
- "value": "\"ReactNativeLinkSdk\""
+ "offset": 10181,
+ "length": 26,
+ "value": "\"SUBMIT_DOCUMENTS_SUCCESS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 830,
- "length": 8,
- "value": "\"%@\/%@ \""
+ "offset": 10260,
+ "length": 24,
+ "value": "\"SUBMIT_DOCUMENTS_ERROR\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 989,
- "length": 2,
- "value": "\"\""
+ "offset": 10332,
+ "length": 18,
+ "value": "\"UPLOAD_DOCUMENTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 1045,
- "length": 29,
- "value": "\"%@%@%@\/%@(%@) %@-%@ (%@ %@)\""
+ "offset": 10392,
+ "length": 12,
+ "value": "\"VERIFY_SMS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/KeyValueService.swift",
"kind": "StringLiteral",
- "offset": 1293,
- "length": 2,
- "value": "\"\""
+ "offset": 148,
+ "length": 30,
+ "value": "\"com.plaid.link.persistent-id\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/KeyValueService.swift",
"kind": "StringLiteral",
- "offset": 1357,
- "length": 2,
- "value": "\"\""
+ "offset": 148,
+ "length": 30,
+ "value": "\"com.plaid.link.persistent-id\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 706,
- "length": 3,
- "value": "118"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3350,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 712,
- "length": 3,
- "value": "255"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3406,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 724,
- "length": 3,
- "value": "118"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3676,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 730,
- "length": 3,
- "value": "255"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4851,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 741,
- "length": 3,
- "value": "118"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5010,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 747,
- "length": 3,
- "value": "255"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5247,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "FloatLiteral",
- "offset": 759,
- "length": 4,
- "value": "0.20"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 792,
+ "length": 68,
+ "value": "\"Failed to decode verification status from rawValue: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 798,
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 859,
"length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "FloatLiteral",
- "offset": 835,
- "length": 3,
- "value": "8.0"
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 356,
- "length": 22,
- "value": "\"LinkKit.TodoPaneViewController\""
+ "offset": 1236,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 376,
- "length": 11,
- "value": "\"RNLinksdk\""
+ "offset": 1470,
+ "length": 32,
+ "value": "\"pending_automatic_verification\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 536,
- "length": 12,
- "value": "\"sdkVersion\""
+ "offset": 1551,
+ "length": 29,
+ "value": "\"pending_manual_verification\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 965,
- "length": 15,
- "value": "\"0.0.0-unknown\""
- },
- {
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
- "kind": "Dictionary",
- "offset": 483,
- "length": 3,
- "value": "[]"
+ "offset": 1620,
+ "length": 19,
+ "value": "\"manually_verified\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/LinkOOPWebViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 170,
- "length": 24,
- "value": "\"LinkKit.LinkOOPWebViewController\""
+ "offset": 1923,
+ "length": 32,
+ "value": "\"pending_automatic_verification\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 108,
- "length": 25,
- "value": "\"LinkKit.LoadingPaneViewController\""
+ "offset": 2013,
+ "length": 29,
+ "value": "\"pending_manual_verification\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
- "kind": "Dictionary",
- "offset": 3085,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2091,
+ "length": 19,
+ "value": "\"manually_verified\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
- "kind": "Dictionary",
- "offset": 6957,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2150,
+ "length": 9,
+ "value": "\"unknown\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 11062,
- "length": 2,
- "value": "\"\""
+ "offset": 2899,
+ "length": 21,
+ "value": "\"PRODUCT_NOT_ENABLED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 11106,
- "length": 16,
- "value": "\"institution_id\""
+ "offset": 2969,
+ "length": 18,
+ "value": "\"DATA_UNAVAILABLE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
- "kind": "BooleanLiteral",
- "offset": 11272,
- "length": 5,
- "value": "false"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3036,
+ "length": 19,
+ "value": "\"PRODUCT_NOT_READY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 11319,
- "length": 16,
- "value": "\"select_account\""
+ "offset": 3116,
+ "length": 32,
+ "value": "\"ASSET_REPORT_GENERATION_FAILED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/KeyValueService.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 148,
- "length": 30,
- "value": "\"com.plaid.link.persistent-id\""
+ "offset": 3195,
+ "length": 16,
+ "value": "\"INVALID_PARENT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/KeyValueService.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 148,
- "length": 30,
- "value": "\"com.plaid.link.persistent-id\""
+ "offset": 3263,
+ "length": 22,
+ "value": "\"INSIGHTS_NOT_ENABLED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkPublicKeyConfiguration+Workflow.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 1921,
- "length": 31,
- "value": "\"com.plaid.com.workflow-bridge\""
+ "offset": 3347,
+ "length": 33,
+ "value": "\"INSIGHTS_PREVIOUSLY_NOT_ENABLED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Constants.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Constants.swift",
"kind": "StringLiteral",
"offset": 90,
"length": 11,
"value": "\"plaidlink\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Constants.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Constants.swift",
"kind": "StringLiteral",
"offset": 90,
"length": 11,
"value": "\"plaidlink\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1532,
+ "offset": 793,
"length": 20,
"value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1562,
+ "offset": 823,
"length": 9,
"value": "2"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1581,
+ "offset": 842,
"length": 18,
"value": "3"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1609,
+ "offset": 870,
"length": 24,
"value": "4"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1643,
+ "offset": 904,
"length": 23,
"value": "5"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1676,
+ "offset": 937,
"length": 12,
"value": "6"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1532,
+ "offset": 793,
"length": 20,
"value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1562,
+ "offset": 823,
"length": 9,
"value": "2"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "IntegerLiteral",
- "offset": 1581,
- "length": 18,
- "value": "3"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "IntegerLiteral",
+ "offset": 842,
+ "length": 18,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "IntegerLiteral",
+ "offset": 870,
+ "length": 24,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "IntegerLiteral",
+ "offset": 904,
+ "length": 23,
+ "value": "5"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "IntegerLiteral",
+ "offset": 937,
+ "length": 12,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 1547,
+ "length": 130,
+ "value": "\"Embedded search does not support public key configuration. Create your Handler using a link token.\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 1810,
+ "length": 9,
+ "value": "\"message\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 2156,
+ "length": 9,
+ "value": "\"message\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 2263,
+ "length": 14,
+ "value": "\"LinkKit.PLKHandlerShim\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 17143,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 17204,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "IntegerLiteral",
- "offset": 1609,
- "length": 24,
- "value": "4"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 17258,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1643,
- "length": 23,
- "value": "5"
+ "offset": 19460,
+ "length": 2,
+ "value": "-1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "IntegerLiteral",
- "offset": 1676,
- "length": 12,
- "value": "6"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 27512,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "Dictionary",
- "offset": 3736,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 30041,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "Dictionary",
- "offset": 3995,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 30081,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "Dictionary",
- "offset": 4208,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 30144,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 3002,
- "length": 14,
- "value": "\"LinkKit.PLKHandlerShim\""
+ "offset": 1312,
+ "length": 3,
+ "value": "\".\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "IntegerLiteral",
- "offset": 5932,
- "length": 15,
- "value": "1"
+ "offset": 1347,
+ "length": 1,
+ "value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "IntegerLiteral",
- "offset": 5932,
- "length": 15,
+ "offset": 1383,
+ "length": 1,
"value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2642,
+ "offset": 2869,
"length": 9,
"value": "\"unknown\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2690,
+ "offset": 2917,
"length": 7,
"value": "\"other\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2737,
+ "offset": 2964,
"length": 8,
"value": "\"credit\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2783,
+ "offset": 3010,
"length": 6,
"value": "\"loan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2833,
+ "offset": 3060,
"length": 12,
"value": "\"depository\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2889,
+ "offset": 3116,
"length": 12,
"value": "\"investment\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2938,
+ "offset": 3165,
"length": 5,
"value": "\"all\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 3542,
+ "offset": 3769,
"length": 7,
"value": "\"other\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 4269,
+ "offset": 4496,
"length": 13,
"value": "\"credit card\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 4322,
+ "offset": 4549,
"length": 8,
"value": "\"paypal\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 5975,
+ "offset": 6202,
"length": 6,
"value": "\"auto\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6023,
+ "offset": 6250,
"length": 10,
"value": "\"business\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6077,
+ "offset": 6304,
"length": 12,
"value": "\"commercial\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6135,
+ "offset": 6362,
"length": 14,
"value": "\"construction\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6191,
+ "offset": 6418,
"length": 10,
"value": "\"consumer\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6245,
+ "offset": 6472,
"length": 13,
"value": "\"home equity\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6304,
+ "offset": 6531,
"length": 16,
"value": "\"line of credit\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6358,
+ "offset": 6585,
"length": 6,
"value": "\"loan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6406,
+ "offset": 6633,
"length": 10,
"value": "\"mortgage\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6459,
+ "offset": 6686,
"length": 11,
"value": "\"overdraft\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6511,
+ "offset": 6738,
"length": 9,
"value": "\"student\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 7917,
+ "offset": 8144,
"length": 17,
"value": "\"cash management\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 7970,
+ "offset": 8197,
"length": 4,
"value": "\"cd\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8016,
+ "offset": 8243,
"length": 10,
"value": "\"checking\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8063,
+ "offset": 8290,
"length": 5,
"value": "\"ebt\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8105,
+ "offset": 8332,
"length": 5,
"value": "\"hsa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8155,
+ "offset": 8382,
"length": 14,
"value": "\"money market\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8209,
+ "offset": 8436,
"length": 8,
"value": "\"paypal\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8258,
+ "offset": 8485,
"length": 9,
"value": "\"prepaid\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8308,
+ "offset": 8535,
"length": 9,
"value": "\"savings\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13420,
+ "offset": 13647,
"length": 6,
"value": "\"401a\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13474,
+ "offset": 13701,
"length": 6,
"value": "\"401k\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13528,
+ "offset": 13755,
"length": 6,
"value": "\"403B\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13582,
+ "offset": 13809,
"length": 6,
"value": "\"457b\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13635,
+ "offset": 13862,
"length": 5,
"value": "\"529\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13683,
+ "offset": 13910,
"length": 11,
"value": "\"brokerage\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13735,
+ "offset": 13962,
"length": 10,
"value": "\"cash isa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13802,
+ "offset": 14029,
"length": 27,
"value": "\"education savings account\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13875,
+ "offset": 14102,
"length": 15,
"value": "\"fixed annuity\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13927,
+ "offset": 14154,
"length": 5,
"value": "\"gic\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13996,
+ "offset": 14223,
"length": 34,
"value": "\"health reimbursement arrangement\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14067,
+ "offset": 14294,
"length": 5,
"value": "\"hsa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14109,
+ "offset": 14336,
"length": 5,
"value": "\"ira\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14151,
+ "offset": 14378,
"length": 5,
"value": "\"isa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14195,
+ "offset": 14422,
"length": 7,
"value": "\"keogh\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14239,
+ "offset": 14466,
"length": 5,
"value": "\"lif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14282,
+ "offset": 14509,
"length": 6,
"value": "\"lira\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14326,
+ "offset": 14553,
"length": 6,
"value": "\"lrif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14370,
+ "offset": 14597,
"length": 6,
"value": "\"lrsp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14420,
+ "offset": 14647,
"length": 13,
"value": "\"mutual fund\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14493,
+ "offset": 14720,
"length": 31,
"value": "\"non-taxable brokerage account\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14565,
+ "offset": 14792,
"length": 9,
"value": "\"pension\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14612,
+ "offset": 14839,
"length": 6,
"value": "\"plan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14656,
+ "offset": 14883,
"length": 6,
"value": "\"prif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14713,
+ "offset": 14940,
"length": 21,
"value": "\"profit sharing plan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14772,
+ "offset": 14999,
"length": 6,
"value": "\"rdsp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14816,
+ "offset": 15043,
"length": 6,
"value": "\"resp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14866,
+ "offset": 15093,
"length": 12,
"value": "\"retirement\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14916,
+ "offset": 15143,
"length": 6,
"value": "\"rlif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14964,
+ "offset": 15191,
"length": 11,
"value": "\"roth 401k\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15013,
+ "offset": 15240,
"length": 6,
"value": "\"roth\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15057,
+ "offset": 15284,
"length": 6,
"value": "\"rrif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15101,
+ "offset": 15328,
"length": 6,
"value": "\"rrsp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15147,
+ "offset": 15374,
"length": 8,
"value": "\"sarsep\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15195,
+ "offset": 15422,
"length": 9,
"value": "\"sep ira\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15247,
+ "offset": 15474,
"length": 12,
"value": "\"simple ira\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15297,
+ "offset": 15524,
"length": 6,
"value": "\"sipp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15346,
+ "offset": 15573,
"length": 12,
"value": "\"stock plan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15396,
+ "offset": 15623,
"length": 6,
"value": "\"tfsa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15453,
+ "offset": 15680,
"length": 21,
"value": "\"thrift savings plan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15513,
+ "offset": 15740,
"length": 7,
"value": "\"trust\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15558,
+ "offset": 15785,
"length": 6,
"value": "\"ugma\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15602,
+ "offset": 15829,
"length": 6,
"value": "\"utma\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15657,
+ "offset": 15884,
"length": 18,
"value": "\"variable annuity\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Component.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
"kind": "IntegerLiteral",
"offset": 2448,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Component.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
"kind": "IntegerLiteral",
"offset": 2461,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/ConsentPaneViewController.swift",
- "kind": "IntegerLiteral",
- "offset": 6999,
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2999,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "Array",
+ "offset": 3058,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 3510,
+ "length": 6,
+ "value": "\"fill\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 3718,
+ "length": 21,
+ "value": "\"exactWidth(\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 3738,
+ "length": 3,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 3872,
+ "length": 11,
+ "value": "\"centerX()\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 4209,
+ "length": 24,
+ "value": "\"exactHeight(\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 4231,
"length": 1,
- "value": "1"
+ "value": "\")\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/ConsentPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
"kind": "StringLiteral",
- "offset": 245,
- "length": 25,
- "value": "\"LinkKit.ConsentPaneViewController\""
+ "offset": 4366,
+ "length": 11,
+ "value": "\"centerY()\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 5653,
+ "length": 12,
+ "value": "\"stackFirst\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 6323,
+ "length": 12,
+ "value": "\"stackBelow\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 6798,
+ "length": 12,
+ "value": "\"stackPrior\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 7442,
+ "length": 10,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 7451,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7510,
+ "length": 2,
+ "value": "20"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7543,
+ "length": 2,
+ "value": "10"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8060,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8091,
+ "length": 2,
+ "value": "10"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "StringLiteral",
"offset": 585,
"length": 12,
"value": "\"hw.machine\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "IntegerLiteral",
"offset": 617,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "IntegerLiteral",
"offset": 672,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "IntegerLiteral",
"offset": 716,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "IntegerLiteral",
"offset": 790,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "StringLiteral",
"offset": 2568,
"length": 9,
"value": "\"LinkKit\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 669,
+ "length": 8,
+ "value": "\"ipwvfb\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1011,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 1337,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2309,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2336,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2362,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2594,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2746,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3084,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3208,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3320,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3451,
+ "length": 1,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 5880,
+ "length": 109,
+ "value": "\"Refusing to start webview fallback with webview having already loaded \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 5984,
+ "length": 3,
+ "value": "\"?\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 5988,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 6052,
+ "length": 54,
+ "value": "\"Starting webview fallback using URL \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 6105,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 6590,
+ "length": 37,
+ "value": "\"webview fallback URL change: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 6626,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6831,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7240,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9850,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 11809,
+ "length": 58,
+ "value": "\"Error on ASWebAuthenticationSession completion: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 11866,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12970,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
"kind": "StringLiteral",
"offset": 404,
"length": 34,
"value": "\"LinkKit.InProcessWebviewFallbackController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/FlutterLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18756,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "StringLiteral",
+ "offset": 772,
+ "length": 39,
+ "value": "\"init(frame:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "StringLiteral",
+ "offset": 907,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 2772,
+ "length": 3,
+ "value": "0.3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 2932,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 2977,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3043,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3149,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3329,
+ "length": 3,
+ "value": "0.3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3489,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3594,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3641,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3707,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4319,
+ "length": 3,
+ "value": "0.3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4479,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4526,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4592,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4696,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4970,
+ "length": 3,
+ "value": "0.3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5141,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5196,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5243,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5288,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5652,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5890,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6521,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6895,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7027,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7814,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8052,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8360,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8513,
+ "length": 2,
+ "value": "48"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8588,
+ "length": 2,
+ "value": "48"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 8873,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8904,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9011,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 9563,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9624,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 10033,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 10099,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/FlutterLinkKit.swift",
"kind": "StringLiteral",
"offset": 258,
"length": 20,
"value": "\"PlaidFlutterPlugin\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/FlutterLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/FlutterLinkKit.swift",
"kind": "StringLiteral",
"offset": 402,
"length": 54,
"value": "\"getLinkTokenConfigurationWithToken:onSuccessHandler:\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/FlutterLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/FlutterLinkKit.swift",
"kind": "BooleanLiteral",
"offset": 550,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/FlutterLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/FlutterLinkKit.swift",
"kind": "BooleanLiteral",
"offset": 594,
"length": 5,
"value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkUIController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "Array",
+ "offset": 139,
+ "length": 27,
+ "value": "[3, 7, 1, 3, 7, 1, 3, 7, 1]"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "BooleanLiteral",
+ "offset": 397,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "IntegerLiteral",
+ "offset": 452,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "IntegerLiteral",
+ "offset": 611,
+ "length": 2,
+ "value": "10"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "IntegerLiteral",
+ "offset": 618,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3020,
+ "length": 18,
+ "value": "\"INVALID_API_KEYS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3095,
+ "length": 26,
+ "value": "\"UNAUTHORIZED_ENVIRONMENT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3173,
+ "length": 22,
+ "value": "\"INVALID_ACCESS_TOKEN\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3247,
+ "length": 22,
+ "value": "\"INVALID_PUBLIC_TOKEN\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3317,
+ "length": 17,
+ "value": "\"INVALID_PRODUCT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3384,
+ "length": 20,
+ "value": "\"INVALID_ACCOUNT_ID\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3456,
+ "length": 21,
+ "value": "\"INVALID_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3538,
+ "length": 32,
+ "value": "\"TOO_MANY_VERIFICATION_ATTEMPTS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
"kind": "BooleanLiteral",
"offset": 920,
"length": 5,
"value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "StringLiteral",
+ "offset": 1184,
+ "length": 44,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "StringLiteral",
+ "offset": 1197,
+ "length": 6,
+ "value": "\" called outside of main thread\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1316,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1605,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "StringLiteral",
+ "offset": 1730,
+ "length": 44,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "StringLiteral",
+ "offset": 1743,
+ "length": 6,
+ "value": "\" called outside of main thread\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1812,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2191,
+ "length": 4,
+ "value": "true"
}
]
}
\ No newline at end of file
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.private.swiftinterface b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.private.swiftinterface
index ed718409..3eedb0d8 100644
--- a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.private.swiftinterface
+++ b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.private.swiftinterface
@@ -1,6 +1,6 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
-// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Osize -module-name LinkKit
+// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
+// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Osize -module-name LinkKit
// swift-module-flags-ignorable: -enable-bare-slash-regex
import AuthenticationServices
import Foundation
@@ -11,96 +11,120 @@ import UIKit
import WebKit
import _Concurrency
import _StringProcessing
+import _SwiftConcurrencyShims
import os
+public enum PresentationMethod {
+ case viewController(UIKit.UIViewController)
+ case custom(LinkKit.PresentationHandler, _: LinkKit.DismissalHandler = { $0.presentingViewController?.dismiss(animated: true, completion: nil) })
+}
+public struct ExitMetadata : Swift.Codable {
+ public var status: LinkKit.ExitStatus?
+ public var institution: LinkKit.Institution?
+ public var linkSessionID: Swift.String?
+ public var requestID: Swift.String?
+ public var metadataJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
+public enum ExitErrorCode : Swift.Codable {
+ case apiError(LinkKit.ApiErrorCode)
+ case authError(LinkKit.AuthErrorCode)
+ case assetReportError(LinkKit.AssetReportErrorCode)
+ case `internal`(Swift.String)
+ case institutionError(LinkKit.InstitutionErrorCode)
+ case itemError(LinkKit.ItemErrorCode)
+ case invalidInput(LinkKit.InvalidInputErrorCode)
+ case invalidRequest(LinkKit.InvalidRequestErrorCode)
+ case rateLimitExceeded(LinkKit.RateLimitErrorCode)
+ case unknown(type: Swift.String, code: Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
+}
extension Foundation.UUID {
public var linkuuidString: Swift.String {
get
}
}
-public struct Plaid {
- public enum CreateError : Swift.Error {
- case configurationError(LinkKit.ConfigurationError)
- }
- @available(*, deprecated, message: "This function will be removed in LinkKit V5.0.0. Use `create(_ linkTokenConfiguration: LinkTokenConfiguration)` instead.")
- public static func create(_ linkPublicKeyConfiguration: LinkKit.LinkPublicKeyConfiguration) -> Swift.Result
- public static func create(_ linkTokenConfiguration: LinkKit.LinkTokenConfiguration) -> Swift.Result
- public static let version: Swift.String
+public struct LinkSuccess : Swift.Codable {
+ public var publicToken: Swift.String
+ public var metadata: LinkKit.SuccessMetadata
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-@available(*, deprecated, message: "HandlerContinueError is deprecated, use Handler.continue(from:) instead of Handler.continueFrom(redirectUri:)")
-public enum HandlerContinueError : Swift.Error {
- case invalidRedirect(Swift.String)
- case `internal`
+public enum EventName : Swift.CustomStringConvertible, Swift.Codable {
+ case bankIncomeInsightsCompleted
+ case closeOAuth
+ case error
+ case exit
+ case failOAuth
+ case handoff
+ case identityVerificationStartStep
+ case identityVerificationPassStep
+ case identityVerificationFailStep
+ case identityVerificationPendingReviewStep
+ case identityVerificationCreateSession
+ case identityVerificationResumeSession
+ case identityVerificationPassSession
+ case identityVerificationFailSession
+ case identityVerificationPendingReviewSession
+ case identityVerificationOpenUI
+ case identityVerificationResumeUI
+ case identityVerificationCloseUI
+ case matchedSelectInstitution
+ case matchedSelectVerifyMethod
+ case open
+ case openMyPlaid
+ case openOAuth
+ case searchInstitution
+ case selectDegradedInstitution
+ case selectFilteredInstitution
+ case selectDownInstitution
+ case selectInstitution
+ case selectBrand
+ case selectAuthType
+ case submitAccountNumber
+ case submitDocuments
+ case submitDocumentsSuccess
+ case submitDocumentsError
+ case submitRoutingNumber
+ case submitCredentials
+ case submitMFA
+ case transitionView
+ case viewDataTypes
+ case submitPhone
+ case skipSubmitPhone
+ case verifyPhone
+ case connectNewInstitution
+ case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public protocol Handler {
- func open(presentUsing method: LinkKit.PresentationMethod)
- @available(*, deprecated, message: "open with options is deprecated")
- func open(presentUsing method: LinkKit.PresentationMethod, _ options: LinkKit.OpenOptions)
- func createEmbeddedView(presentUsing: LinkKit.PresentationMethod) -> Swift.Result
- @available(*, deprecated, message: "`continueFrom(redirectUri:) -> HandlerContinueError?` is deprecated. Use `continue(from:) -> Void`")
- func continueFrom(redirectUri: Foundation.URL) -> LinkKit.HandlerContinueError?
- @available(*, deprecated, message: "This function will be removed in LinkKit V5.0.0. This function should only be used if your app crashed or was killed during an out-of-process OAuth flow. Use `resumeAfterTermination(from redirectUri: URL)`")
- func `continue`(from redirectUri: Foundation.URL)
- func resumeAfterTermination(from redirectUri: Foundation.URL)
+public struct Institution : Swift.Codable {
+ public var id: LinkKit.InstitutionID
+ public var name: Swift.String
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public struct LinkTokenConfiguration {
- public let token: Swift.String
- public var onSuccess: LinkKit.OnSuccessHandler
- public var onExit: (LinkKit.LinkExit) -> Swift.Void
- public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
- public var noLoadingState: Swift.Bool
- public init(token: Swift.String, onSuccess: @escaping LinkKit.OnSuccessHandler)
+public enum ConfigurationError : Swift.Error {
+ case malformedClientID(message: Swift.String)
+ case missingAuthorization(message: Swift.String)
+ case noProduct(message: Swift.String)
+ case invalidOptionValue(message: Swift.String)
+ case invalidOptionCombination(message: Swift.String)
+ case invalidToken(message: Swift.String)
}
-public struct OAuthNonceConfiguration {
- public let nonce: LinkKit.OAuthNonce
- public let redirectUri: Foundation.URL
- public init(nonce: Swift.String, redirectUri: Foundation.URL)
-}
-public struct LinkPublicKeyConfiguration {
- public enum Token {
- @available(*, deprecated, message: "publicKey is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case payment(LinkKit.PaymentToken, LinkKit.PublicKey)
- @available(*, deprecated, message: "publicToken is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case depositSwitchToken(LinkKit.DepositSwitchToken, LinkKit.PublicKey)
- @available(*, deprecated, message: "publicKey is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case publicKey(LinkKit.PublicKey)
- @available(*, deprecated, message: "publicToken is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case publicToken(LinkKit.PublicToken, LinkKit.PublicKey)
- }
- public var clientName: Swift.String
- public var environment: LinkKit.Environment
- public var products: Swift.Set
- public var language: LinkKit.Language
- public var countryCodes: [LinkKit.CountryCode]
- public var token: LinkKit.LinkPublicKeyConfiguration.Token
- public var onSuccess: LinkKit.OnSuccessHandler
- public var onExit: (LinkKit.LinkExit) -> Swift.Void
- public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
- public var webhook: Foundation.URL?
- public var userLegalName: Swift.String?
- public var userEmailAddress: Swift.String?
- public var userPhoneNumber: Swift.String?
- public var linkCustomizationName: Swift.String?
- public var accountSubtypes: [LinkKit.AccountSubtype]
- public var oauthConfiguration: LinkKit.OAuthNonceConfiguration?
- public init(clientName: Swift.String, environment: LinkKit.Environment, products: Swift.Set, language: LinkKit.Language, token: LinkKit.LinkPublicKeyConfiguration.Token, countryCodes: [LinkKit.CountryCode], onSuccess: @escaping LinkKit.OnSuccessHandler)
+public struct LinkExit : Swift.Codable {
+ public var error: LinkKit.ExitError?
+ public var metadata: LinkKit.ExitMetadata
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public typealias PublicKey = Swift.String
-public typealias PublicToken = Swift.String
-public typealias PaymentToken = Swift.String
-public typealias DepositSwitchToken = Swift.String
-public typealias Language = Swift.String
-public typealias CountryCode = Swift.String
-public typealias OAuthNonce = Swift.String
-public typealias PresentationHandler = (UIKit.UIViewController) -> Swift.Void
-public typealias DismissalHandler = (UIKit.UIViewController) -> Swift.Void
-public typealias OnSuccessHandler = (LinkKit.LinkSuccess) -> Swift.Void
-public typealias OnExitHandler = (LinkKit.LinkExit) -> Swift.Void
-public typealias OnEventHandler = (LinkKit.LinkEvent) -> Swift.Void
-public typealias OpenOptions = [Swift.String : Swift.String]
-public typealias RawJSONMetadata = Swift.String
-public typealias InstitutionID = Swift.String
-public typealias AccountID = Swift.String
-public typealias AccountMask = Swift.String
public enum AccountSubtype : Swift.Codable {
case unknown(type: Swift.String, subtype: Swift.String)
case other(LinkKit.AccountSubtype.Other)
@@ -108,7 +132,7 @@ public enum AccountSubtype : Swift.Codable {
case all
case other
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case credit(LinkKit.AccountSubtype.Credit)
public enum Credit : Swift.Codable {
@@ -116,7 +140,7 @@ public enum AccountSubtype : Swift.Codable {
case creditCard
case paypal
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case loan(LinkKit.AccountSubtype.Loan)
public enum Loan : Swift.Codable {
@@ -133,7 +157,7 @@ public enum AccountSubtype : Swift.Codable {
case overdraft
case student
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case depository(LinkKit.AccountSubtype.Depository)
public enum Depository : Swift.Codable {
@@ -148,7 +172,7 @@ public enum AccountSubtype : Swift.Codable {
case prepaid
case savings
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case investment(LinkKit.AccountSubtype.Investment)
public enum Investment : Swift.Codable {
@@ -198,101 +222,40 @@ public enum AccountSubtype : Swift.Codable {
case unknown(Swift.String)
case utma
case variableAnnuity
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
- public init(from decoder: Swift.Decoder) throws
- public func encode(to encoder: Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public struct LinkSuccess : Swift.Codable {
- public var publicToken: Swift.String
- public var metadata: LinkKit.SuccessMetadata
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct LinkExit : Swift.Codable {
- public var error: LinkKit.ExitError?
- public var metadata: LinkKit.ExitMetadata
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct LinkEvent : Swift.Codable {
- public var eventName: LinkKit.EventName
- public var metadata: LinkKit.EventMetadata
- public init(from decoder: Swift.Decoder) throws
- public func encode(to encoder: Swift.Encoder) throws
-}
-public enum ConfigurationError : Swift.Error {
- case malformedClientID(message: Swift.String)
- case missingAuthorization(message: Swift.String)
- case noProduct(message: Swift.String)
- case invalidOptionValue(message: Swift.String)
- case invalidOptionCombination(message: Swift.String)
- case invalidToken(message: Swift.String)
-}
-public enum Environment : Swift.CustomStringConvertible {
- case production
- case development
- case sandbox
- public var description: Swift.String {
- get
- }
- public static func == (a: LinkKit.Environment, b: LinkKit.Environment) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
+public struct SuccessMetadata : Swift.Codable {
+ public var institution: LinkKit.Institution
+ public var accounts: [LinkKit.Account]
+ public var linkSessionID: Swift.String
+ public var metadataJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public enum Product : Swift.CustomStringConvertible, Swift.CaseIterable {
- case assets
- case auth
- case depositSwitch
- case identity
- case income
- case investments
- case liabilities
- case liabilitiesReport
- case paymentInitiation
- case transactions
+public enum RateLimitErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case accountsLimit
+ case additionLimit
+ case authLimit
+ case identityLimit
+ case incomeLimit
+ case itemGetLimit
+ case rateLimit
+ case transactionsLimit
+ case unknown(Swift.String)
public var description: Swift.String {
get
}
- public static func == (a: LinkKit.Product, b: LinkKit.Product) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public typealias AllCases = [LinkKit.Product]
- public static var allCases: [LinkKit.Product] {
- get
- }
- public var hashValue: Swift.Int {
- get
- }
}
-public enum VerificationStatus : Swift.CustomStringConvertible, Swift.Codable {
- case pendingAutomaticVerification
- case pendingManualVerification
- case manuallyVerified
+public enum ApiErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case internalServerError
+ case plannedMaintenance
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct Account : Swift.Codable {
- public let id: LinkKit.AccountID
- public let name: Swift.String
- public let mask: LinkKit.AccountMask?
- public let subtype: LinkKit.AccountSubtype
- public let verificationStatus: LinkKit.VerificationStatus?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct SuccessMetadata : Swift.Codable {
- public var institution: LinkKit.Institution
- public var accounts: [LinkKit.Account]
- public var linkSessionID: Swift.String
- public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
}
public enum ExitStatus : Swift.CustomStringConvertible, Swift.Codable {
case requiresQuestions
@@ -304,186 +267,111 @@ public enum ExitStatus : Swift.CustomStringConvertible, Swift.Codable {
case requiresAccountSelection
case continueToThirdParty
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct ExitError : Swift.Error, Swift.Codable {
- public var errorCode: LinkKit.ExitErrorCode
- public var errorMessage: Swift.String
- public var displayMessage: Swift.String?
- public var errorJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct Institution : Swift.Codable {
- public var id: LinkKit.InstitutionID
- public var name: Swift.String
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public struct ExitMetadata : Swift.Codable {
- public var status: LinkKit.ExitStatus?
- public var institution: LinkKit.Institution?
- public var linkSessionID: Swift.String?
+public struct EventMetadata : Swift.Codable {
+ public var accountNumberMask: Swift.String?
+ public var errorCode: LinkKit.ExitErrorCode?
+ public var errorMessage: Swift.String?
+ public var exitStatus: LinkKit.ExitStatus?
+ public var institutionID: LinkKit.InstitutionID?
+ public var institutionName: Swift.String?
+ public var institutionSearchQuery: Swift.String?
+ public var isUpdateMode: Swift.String?
+ public var matchReason: Swift.String?
+ public var linkSessionID: Swift.String
+ public var mfaType: LinkKit.MFAType?
public var requestID: Swift.String?
+ public var routingNumber: Swift.String?
+ public var selection: Swift.String?
+ public var timestamp: Foundation.Date
+ public var viewName: LinkKit.ViewName?
public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public enum EventName : Swift.CustomStringConvertible, Swift.Codable {
- case bankIncomeInsightsCompleted
- case closeOAuth
- case error
- case exit
- case failOAuth
- case handoff
- case identityVerificationStartStep
- case identityVerificationPassStep
- case identityVerificationFailStep
- case identityVerificationPendingReviewStep
- case identityVerificationCreateSession
- case identityVerificationResumeSession
- case identityVerificationPassSession
- case identityVerificationFailSession
- case identityVerificationPendingReviewSession
- case identityVerificationOpenUI
- case identityVerificationResumeUI
- case identityVerificationCloseUI
- case matchedSelectInstitution
- case matchedSelectVerifyMethod
- case open
- case openMyPlaid
- case openOAuth
- case searchInstitution
- case selectDegradedInstitution
- case selectFilteredInstitution
- case selectDownInstitution
- case selectInstitution
- case selectBrand
- case selectAuthType
- case submitAccountNumber
- case submitDocuments
- case submitDocumentsSuccess
- case submitDocumentsError
- case submitRoutingNumber
- case submitCredentials
- case submitMFA
- case transitionView
- case viewDataTypes
- case submitPhone
- case skipSubmitPhone
- case verifyPhone
- case connectNewInstitution
+public struct Plaid {
+ public enum CreateError : Swift.Error {
+ case configurationError(LinkKit.ConfigurationError)
+ }
+ public static func create(_ linkTokenConfiguration: LinkKit.LinkTokenConfiguration) -> Swift.Result
+ public static let version: Swift.String
+}
+public enum AuthErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case productNotReady
+ case verificationExpired
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
}
-public enum ViewName : Swift.CustomStringConvertible, Swift.Codable {
- case acceptTOS
- case connected
- case consent
- case credential
- case dataTransparency
- case dataTransparencyConsent
- case documentaryVerification
- case error
- case exit
- case kycCheck
- case loading
- case matchedConsent
- case matchedCredential
- case matchedMFA
- case mfa
- case numbers
- case numbersSelectInstitution
- case oauth
- case recaptcha
- case riskCheck
- case screening
- case selectAccount
- case selectAuthType
- case submitPhone
- case verifyPhone
- case selectSavedInstitution
- case selectSavedAccount
- case selectBrand
- case selectInstitution
- case selfieCheck
- case uploadDocuments
- case submitDocuments
- case submitDocumentsSuccess
- case submitDocumentsError
- case verifySMS
- case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+public enum Environment : Swift.CustomStringConvertible {
+ case production
+ case development
+ case sandbox
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
+ public static func == (a: LinkKit.Environment, b: LinkKit.Environment) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public var hashValue: Swift.Int {
+ get
+ }
}
-public struct EventMetadata : Swift.Codable {
- public var accountNumberMask: Swift.String?
- public var errorCode: LinkKit.ExitErrorCode?
- public var errorMessage: Swift.String?
- public var exitStatus: LinkKit.ExitStatus?
- public var institutionID: LinkKit.InstitutionID?
- public var institutionName: Swift.String?
- public var institutionSearchQuery: Swift.String?
- public var isUpdateMode: Swift.String?
- public var matchReason: Swift.String?
- public var linkSessionID: Swift.String
- public var mfaType: LinkKit.MFAType?
- public var requestID: Swift.String?
- public var routingNumber: Swift.String?
- public var selection: Swift.String?
- public var timestamp: Foundation.Date
- public var viewName: LinkKit.ViewName?
- public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
+public struct ExitError : Swift.Error, Swift.Codable {
+ public var errorCode: LinkKit.ExitErrorCode
+ public var errorMessage: Swift.String
+ public var displayMessage: Swift.String?
+ public var errorJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
public enum MFAType : Swift.CustomStringConvertible, Swift.Codable {
case code
case device
case questions
case selections
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
public static func == (a: LinkKit.MFAType, b: LinkKit.MFAType) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
-public enum PresentationMethod {
- case viewController(UIKit.UIViewController)
- case custom(LinkKit.PresentationHandler, _: LinkKit.DismissalHandler = { $0.presentingViewController?.dismiss(animated: true, completion: nil) })
+@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class EmbeddedSearchAndSelectView : UIKit.UIView {
+ @available(*, unavailable)
+ @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect)
+ @objc deinit
}
-public enum ExitErrorCode : Swift.Codable {
- case apiError(LinkKit.ApiErrorCode)
- case authError(LinkKit.AuthErrorCode)
- case assetReportError(LinkKit.AssetReportErrorCode)
- case `internal`(Swift.String)
- case institutionError(LinkKit.InstitutionErrorCode)
- case itemError(LinkKit.ItemErrorCode)
- case invalidInput(LinkKit.InvalidInputErrorCode)
- case invalidRequest(LinkKit.InvalidRequestErrorCode)
- case rateLimitExceeded(LinkKit.RateLimitErrorCode)
- case unknown(type: Swift.String, code: Swift.String)
- public init(from decoder: Swift.Decoder) throws
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegate {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didUnhighlightItemAt indexPath: Foundation.IndexPath)
+}
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDataSource {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
+}
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegateFlowLayout {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, layout collectionViewLayout: UIKit.UICollectionViewLayout, sizeForItemAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGSize
+}
+public enum InstitutionErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case institutionDown
+ case institutionNotResponding
+ case institutionNotAvailable
+ case institutionNoLongerSupported
+ case unknown(Swift.String)
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
}
public enum InvalidRequestErrorCode : Swift.Error, Swift.CustomStringConvertible {
case missingFields
@@ -498,42 +386,6 @@ public enum InvalidRequestErrorCode : Swift.Error, Swift.CustomStringConvertible
get
}
}
-public enum InvalidInputErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case invalidApiKeys
- case unauthorizedEnvironment
- case invalidAccessToken
- case invalidPublicToken
- case invalidProduct
- case invalidAccountId
- case invalidInstitution
- case tooManyVerificationAttempts
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-public enum RateLimitErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case accountsLimit
- case additionLimit
- case authLimit
- case identityLimit
- case incomeLimit
- case itemGetLimit
- case rateLimit
- case transactionsLimit
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-public enum ApiErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case internalServerError
- case plannedMaintenance
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
public enum ItemErrorCode : Swift.Error, Swift.CustomStringConvertible {
case insufficientCredentials
case invalidCredentials
@@ -559,13 +411,112 @@ public enum ItemErrorCode : Swift.Error, Swift.CustomStringConvertible {
get
}
}
-public enum AuthErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case productNotReady
- case verificationExpired
+public struct LinkEvent : Swift.Codable {
+ public var eventName: LinkKit.EventName
+ public var metadata: LinkKit.EventMetadata
+ public init(from decoder: any Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
+}
+public enum Product : Swift.CustomStringConvertible, Swift.CaseIterable {
+ case assets
+ case auth
+ case depositSwitch
+ case identity
+ case income
+ case investments
+ case liabilities
+ case liabilitiesReport
+ case paymentInitiation
+ case transactions
+ public var description: Swift.String {
+ get
+ }
+ public static func == (a: LinkKit.Product, b: LinkKit.Product) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public typealias AllCases = [LinkKit.Product]
+ public static var allCases: [LinkKit.Product] {
+ get
+ }
+ public var hashValue: Swift.Int {
+ get
+ }
+}
+public typealias PublicKey = Swift.String
+public typealias PublicToken = Swift.String
+public typealias PaymentToken = Swift.String
+public typealias DepositSwitchToken = Swift.String
+public typealias Language = Swift.String
+public typealias CountryCode = Swift.String
+public typealias PresentationHandler = (UIKit.UIViewController) -> Swift.Void
+public typealias DismissalHandler = (UIKit.UIViewController) -> Swift.Void
+public typealias OnSuccessHandler = (LinkKit.LinkSuccess) -> Swift.Void
+public typealias OnExitHandler = (LinkKit.LinkExit) -> Swift.Void
+public typealias OnEventHandler = (LinkKit.LinkEvent) -> Swift.Void
+public typealias RawJSONMetadata = Swift.String
+public typealias InstitutionID = Swift.String
+public typealias AccountID = Swift.String
+public typealias AccountMask = Swift.String
+public struct LinkTokenConfiguration {
+ public let token: Swift.String
+ public var onSuccess: LinkKit.OnSuccessHandler
+ public var onExit: (LinkKit.LinkExit) -> Swift.Void
+ public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
+ public var noLoadingState: Swift.Bool
+ public init(token: Swift.String, onSuccess: @escaping LinkKit.OnSuccessHandler)
+}
+public enum ViewName : Swift.CustomStringConvertible, Swift.Codable {
+ case acceptTOS
+ case connected
+ case consent
+ case credential
+ case dataTransparency
+ case dataTransparencyConsent
+ case documentaryVerification
+ case error
+ case exit
+ case kycCheck
+ case loading
+ case matchedConsent
+ case matchedCredential
+ case matchedMFA
+ case mfa
+ case numbers
+ case numbersSelectInstitution
+ case oauth
+ case recaptcha
+ case riskCheck
+ case screening
+ case selectAccount
+ case selectAuthType
+ case submitPhone
+ case verifyPhone
+ case selectSavedInstitution
+ case selectSavedAccount
+ case selectBrand
+ case selectInstitution
+ case selfieCheck
+ case uploadDocuments
+ case submitDocuments
+ case submitDocumentsSuccess
+ case submitDocumentsError
+ case verifySMS
+ case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
+}
+public enum VerificationStatus : Swift.CustomStringConvertible, Swift.Codable {
+ case pendingAutomaticVerification
+ case pendingManualVerification
+ case manuallyVerified
case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
+ public func encode(to encoder: any Swift.Encoder) throws
}
public enum AssetReportErrorCode : Swift.Error, Swift.CustomStringConvertible {
case productNotEnabled
@@ -580,36 +531,8 @@ public enum AssetReportErrorCode : Swift.Error, Swift.CustomStringConvertible {
get
}
}
-public enum InstitutionErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case institutionDown
- case institutionNotResponding
- case institutionNotAvailable
- case institutionNoLongerSupported
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class EmbeddedSearchAndSelectView : UIKit.UIView {
- @available(*, unavailable)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect)
- @objc deinit
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegate {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didUnhighlightItemAt indexPath: Foundation.IndexPath)
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDataSource {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegateFlowLayout {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, layout collectionViewLayout: UIKit.UICollectionViewLayout, sizeForItemAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGSize
-}
@_inheritsConvenienceInitializers @objc public class PLKPlaid : ObjectiveC.NSObject {
- @objc public static func createWithLinkTokenConfiguration(_ linkTokenConfiguration: LinkKit.PLKLinkTokenConfiguration, error: Foundation.NSErrorPointer) -> LinkKit.PLKHandler?
- @objc public static func createWithLinkPublicKeyConfiguration(_ linkPublicKeyConfiguration: LinkKit.PLKLinkPublicKeyConfiguration, error: Foundation.NSErrorPointer) -> LinkKit.PLKHandler?
+ @objc public static func createWithLinkTokenConfiguration(_ linkTokenConfiguration: LinkKit.PLKLinkTokenConfiguration, error: Foundation.NSErrorPointer) -> (any LinkKit.PLKHandler)?
@objc public static var sdkVersion: Swift.String {
@objc get
}
@@ -631,6 +554,15 @@ extension LinkKit.LinkEvent {
get
}
}
+public struct Account : Swift.Codable {
+ public let id: LinkKit.AccountID
+ public let name: Swift.String
+ public let mask: LinkKit.AccountMask?
+ public let subtype: LinkKit.AccountSubtype
+ public let verificationStatus: LinkKit.VerificationStatus?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
extension LinkKit.AccountSubtype {
public var description: Swift.String {
get
@@ -661,6 +593,25 @@ extension LinkKit.AccountSubtype.Investment {
get
}
}
+public protocol Handler {
+ func open(presentUsing method: LinkKit.PresentationMethod)
+ func createEmbeddedView(presentUsing: LinkKit.PresentationMethod) -> UIKit.UIView
+ func resumeAfterTermination(from redirectUri: Foundation.URL)
+}
+public enum InvalidInputErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case invalidApiKeys
+ case unauthorizedEnvironment
+ case invalidAccessToken
+ case invalidPublicToken
+ case invalidProduct
+ case invalidAccountId
+ case invalidInstitution
+ case tooManyVerificationAttempts
+ case unknown(Swift.String)
+ public var description: Swift.String {
+ get
+ }
+}
extension LinkKit.AccountSubtype : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Other : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Credit : Swift.CustomStringConvertible {}
@@ -669,7 +620,7 @@ extension LinkKit.AccountSubtype.Depository : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Investment : Swift.CustomStringConvertible {}
extension LinkKit.Environment : Swift.Equatable {}
extension LinkKit.Environment : Swift.Hashable {}
-extension LinkKit.Product : Swift.Equatable {}
-extension LinkKit.Product : Swift.Hashable {}
extension LinkKit.MFAType : Swift.Equatable {}
extension LinkKit.MFAType : Swift.Hashable {}
+extension LinkKit.Product : Swift.Equatable {}
+extension LinkKit.Product : Swift.Hashable {}
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftdoc b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftdoc
index 78cf8538..7c5a8c02 100644
Binary files a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftdoc and b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftdoc differ
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftinterface b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftinterface
index ed718409..3eedb0d8 100644
--- a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftinterface
+++ b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftinterface
@@ -1,6 +1,6 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
-// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Osize -module-name LinkKit
+// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
+// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Osize -module-name LinkKit
// swift-module-flags-ignorable: -enable-bare-slash-regex
import AuthenticationServices
import Foundation
@@ -11,96 +11,120 @@ import UIKit
import WebKit
import _Concurrency
import _StringProcessing
+import _SwiftConcurrencyShims
import os
+public enum PresentationMethod {
+ case viewController(UIKit.UIViewController)
+ case custom(LinkKit.PresentationHandler, _: LinkKit.DismissalHandler = { $0.presentingViewController?.dismiss(animated: true, completion: nil) })
+}
+public struct ExitMetadata : Swift.Codable {
+ public var status: LinkKit.ExitStatus?
+ public var institution: LinkKit.Institution?
+ public var linkSessionID: Swift.String?
+ public var requestID: Swift.String?
+ public var metadataJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
+public enum ExitErrorCode : Swift.Codable {
+ case apiError(LinkKit.ApiErrorCode)
+ case authError(LinkKit.AuthErrorCode)
+ case assetReportError(LinkKit.AssetReportErrorCode)
+ case `internal`(Swift.String)
+ case institutionError(LinkKit.InstitutionErrorCode)
+ case itemError(LinkKit.ItemErrorCode)
+ case invalidInput(LinkKit.InvalidInputErrorCode)
+ case invalidRequest(LinkKit.InvalidRequestErrorCode)
+ case rateLimitExceeded(LinkKit.RateLimitErrorCode)
+ case unknown(type: Swift.String, code: Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
+}
extension Foundation.UUID {
public var linkuuidString: Swift.String {
get
}
}
-public struct Plaid {
- public enum CreateError : Swift.Error {
- case configurationError(LinkKit.ConfigurationError)
- }
- @available(*, deprecated, message: "This function will be removed in LinkKit V5.0.0. Use `create(_ linkTokenConfiguration: LinkTokenConfiguration)` instead.")
- public static func create(_ linkPublicKeyConfiguration: LinkKit.LinkPublicKeyConfiguration) -> Swift.Result
- public static func create(_ linkTokenConfiguration: LinkKit.LinkTokenConfiguration) -> Swift.Result
- public static let version: Swift.String
+public struct LinkSuccess : Swift.Codable {
+ public var publicToken: Swift.String
+ public var metadata: LinkKit.SuccessMetadata
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-@available(*, deprecated, message: "HandlerContinueError is deprecated, use Handler.continue(from:) instead of Handler.continueFrom(redirectUri:)")
-public enum HandlerContinueError : Swift.Error {
- case invalidRedirect(Swift.String)
- case `internal`
+public enum EventName : Swift.CustomStringConvertible, Swift.Codable {
+ case bankIncomeInsightsCompleted
+ case closeOAuth
+ case error
+ case exit
+ case failOAuth
+ case handoff
+ case identityVerificationStartStep
+ case identityVerificationPassStep
+ case identityVerificationFailStep
+ case identityVerificationPendingReviewStep
+ case identityVerificationCreateSession
+ case identityVerificationResumeSession
+ case identityVerificationPassSession
+ case identityVerificationFailSession
+ case identityVerificationPendingReviewSession
+ case identityVerificationOpenUI
+ case identityVerificationResumeUI
+ case identityVerificationCloseUI
+ case matchedSelectInstitution
+ case matchedSelectVerifyMethod
+ case open
+ case openMyPlaid
+ case openOAuth
+ case searchInstitution
+ case selectDegradedInstitution
+ case selectFilteredInstitution
+ case selectDownInstitution
+ case selectInstitution
+ case selectBrand
+ case selectAuthType
+ case submitAccountNumber
+ case submitDocuments
+ case submitDocumentsSuccess
+ case submitDocumentsError
+ case submitRoutingNumber
+ case submitCredentials
+ case submitMFA
+ case transitionView
+ case viewDataTypes
+ case submitPhone
+ case skipSubmitPhone
+ case verifyPhone
+ case connectNewInstitution
+ case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public protocol Handler {
- func open(presentUsing method: LinkKit.PresentationMethod)
- @available(*, deprecated, message: "open with options is deprecated")
- func open(presentUsing method: LinkKit.PresentationMethod, _ options: LinkKit.OpenOptions)
- func createEmbeddedView(presentUsing: LinkKit.PresentationMethod) -> Swift.Result
- @available(*, deprecated, message: "`continueFrom(redirectUri:) -> HandlerContinueError?` is deprecated. Use `continue(from:) -> Void`")
- func continueFrom(redirectUri: Foundation.URL) -> LinkKit.HandlerContinueError?
- @available(*, deprecated, message: "This function will be removed in LinkKit V5.0.0. This function should only be used if your app crashed or was killed during an out-of-process OAuth flow. Use `resumeAfterTermination(from redirectUri: URL)`")
- func `continue`(from redirectUri: Foundation.URL)
- func resumeAfterTermination(from redirectUri: Foundation.URL)
+public struct Institution : Swift.Codable {
+ public var id: LinkKit.InstitutionID
+ public var name: Swift.String
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public struct LinkTokenConfiguration {
- public let token: Swift.String
- public var onSuccess: LinkKit.OnSuccessHandler
- public var onExit: (LinkKit.LinkExit) -> Swift.Void
- public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
- public var noLoadingState: Swift.Bool
- public init(token: Swift.String, onSuccess: @escaping LinkKit.OnSuccessHandler)
+public enum ConfigurationError : Swift.Error {
+ case malformedClientID(message: Swift.String)
+ case missingAuthorization(message: Swift.String)
+ case noProduct(message: Swift.String)
+ case invalidOptionValue(message: Swift.String)
+ case invalidOptionCombination(message: Swift.String)
+ case invalidToken(message: Swift.String)
}
-public struct OAuthNonceConfiguration {
- public let nonce: LinkKit.OAuthNonce
- public let redirectUri: Foundation.URL
- public init(nonce: Swift.String, redirectUri: Foundation.URL)
-}
-public struct LinkPublicKeyConfiguration {
- public enum Token {
- @available(*, deprecated, message: "publicKey is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case payment(LinkKit.PaymentToken, LinkKit.PublicKey)
- @available(*, deprecated, message: "publicToken is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case depositSwitchToken(LinkKit.DepositSwitchToken, LinkKit.PublicKey)
- @available(*, deprecated, message: "publicKey is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case publicKey(LinkKit.PublicKey)
- @available(*, deprecated, message: "publicToken is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case publicToken(LinkKit.PublicToken, LinkKit.PublicKey)
- }
- public var clientName: Swift.String
- public var environment: LinkKit.Environment
- public var products: Swift.Set
- public var language: LinkKit.Language
- public var countryCodes: [LinkKit.CountryCode]
- public var token: LinkKit.LinkPublicKeyConfiguration.Token
- public var onSuccess: LinkKit.OnSuccessHandler
- public var onExit: (LinkKit.LinkExit) -> Swift.Void
- public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
- public var webhook: Foundation.URL?
- public var userLegalName: Swift.String?
- public var userEmailAddress: Swift.String?
- public var userPhoneNumber: Swift.String?
- public var linkCustomizationName: Swift.String?
- public var accountSubtypes: [LinkKit.AccountSubtype]
- public var oauthConfiguration: LinkKit.OAuthNonceConfiguration?
- public init(clientName: Swift.String, environment: LinkKit.Environment, products: Swift.Set, language: LinkKit.Language, token: LinkKit.LinkPublicKeyConfiguration.Token, countryCodes: [LinkKit.CountryCode], onSuccess: @escaping LinkKit.OnSuccessHandler)
+public struct LinkExit : Swift.Codable {
+ public var error: LinkKit.ExitError?
+ public var metadata: LinkKit.ExitMetadata
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public typealias PublicKey = Swift.String
-public typealias PublicToken = Swift.String
-public typealias PaymentToken = Swift.String
-public typealias DepositSwitchToken = Swift.String
-public typealias Language = Swift.String
-public typealias CountryCode = Swift.String
-public typealias OAuthNonce = Swift.String
-public typealias PresentationHandler = (UIKit.UIViewController) -> Swift.Void
-public typealias DismissalHandler = (UIKit.UIViewController) -> Swift.Void
-public typealias OnSuccessHandler = (LinkKit.LinkSuccess) -> Swift.Void
-public typealias OnExitHandler = (LinkKit.LinkExit) -> Swift.Void
-public typealias OnEventHandler = (LinkKit.LinkEvent) -> Swift.Void
-public typealias OpenOptions = [Swift.String : Swift.String]
-public typealias RawJSONMetadata = Swift.String
-public typealias InstitutionID = Swift.String
-public typealias AccountID = Swift.String
-public typealias AccountMask = Swift.String
public enum AccountSubtype : Swift.Codable {
case unknown(type: Swift.String, subtype: Swift.String)
case other(LinkKit.AccountSubtype.Other)
@@ -108,7 +132,7 @@ public enum AccountSubtype : Swift.Codable {
case all
case other
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case credit(LinkKit.AccountSubtype.Credit)
public enum Credit : Swift.Codable {
@@ -116,7 +140,7 @@ public enum AccountSubtype : Swift.Codable {
case creditCard
case paypal
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case loan(LinkKit.AccountSubtype.Loan)
public enum Loan : Swift.Codable {
@@ -133,7 +157,7 @@ public enum AccountSubtype : Swift.Codable {
case overdraft
case student
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case depository(LinkKit.AccountSubtype.Depository)
public enum Depository : Swift.Codable {
@@ -148,7 +172,7 @@ public enum AccountSubtype : Swift.Codable {
case prepaid
case savings
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case investment(LinkKit.AccountSubtype.Investment)
public enum Investment : Swift.Codable {
@@ -198,101 +222,40 @@ public enum AccountSubtype : Swift.Codable {
case unknown(Swift.String)
case utma
case variableAnnuity
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
- public init(from decoder: Swift.Decoder) throws
- public func encode(to encoder: Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public struct LinkSuccess : Swift.Codable {
- public var publicToken: Swift.String
- public var metadata: LinkKit.SuccessMetadata
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct LinkExit : Swift.Codable {
- public var error: LinkKit.ExitError?
- public var metadata: LinkKit.ExitMetadata
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct LinkEvent : Swift.Codable {
- public var eventName: LinkKit.EventName
- public var metadata: LinkKit.EventMetadata
- public init(from decoder: Swift.Decoder) throws
- public func encode(to encoder: Swift.Encoder) throws
-}
-public enum ConfigurationError : Swift.Error {
- case malformedClientID(message: Swift.String)
- case missingAuthorization(message: Swift.String)
- case noProduct(message: Swift.String)
- case invalidOptionValue(message: Swift.String)
- case invalidOptionCombination(message: Swift.String)
- case invalidToken(message: Swift.String)
-}
-public enum Environment : Swift.CustomStringConvertible {
- case production
- case development
- case sandbox
- public var description: Swift.String {
- get
- }
- public static func == (a: LinkKit.Environment, b: LinkKit.Environment) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
+public struct SuccessMetadata : Swift.Codable {
+ public var institution: LinkKit.Institution
+ public var accounts: [LinkKit.Account]
+ public var linkSessionID: Swift.String
+ public var metadataJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public enum Product : Swift.CustomStringConvertible, Swift.CaseIterable {
- case assets
- case auth
- case depositSwitch
- case identity
- case income
- case investments
- case liabilities
- case liabilitiesReport
- case paymentInitiation
- case transactions
+public enum RateLimitErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case accountsLimit
+ case additionLimit
+ case authLimit
+ case identityLimit
+ case incomeLimit
+ case itemGetLimit
+ case rateLimit
+ case transactionsLimit
+ case unknown(Swift.String)
public var description: Swift.String {
get
}
- public static func == (a: LinkKit.Product, b: LinkKit.Product) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public typealias AllCases = [LinkKit.Product]
- public static var allCases: [LinkKit.Product] {
- get
- }
- public var hashValue: Swift.Int {
- get
- }
}
-public enum VerificationStatus : Swift.CustomStringConvertible, Swift.Codable {
- case pendingAutomaticVerification
- case pendingManualVerification
- case manuallyVerified
+public enum ApiErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case internalServerError
+ case plannedMaintenance
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct Account : Swift.Codable {
- public let id: LinkKit.AccountID
- public let name: Swift.String
- public let mask: LinkKit.AccountMask?
- public let subtype: LinkKit.AccountSubtype
- public let verificationStatus: LinkKit.VerificationStatus?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct SuccessMetadata : Swift.Codable {
- public var institution: LinkKit.Institution
- public var accounts: [LinkKit.Account]
- public var linkSessionID: Swift.String
- public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
}
public enum ExitStatus : Swift.CustomStringConvertible, Swift.Codable {
case requiresQuestions
@@ -304,186 +267,111 @@ public enum ExitStatus : Swift.CustomStringConvertible, Swift.Codable {
case requiresAccountSelection
case continueToThirdParty
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct ExitError : Swift.Error, Swift.Codable {
- public var errorCode: LinkKit.ExitErrorCode
- public var errorMessage: Swift.String
- public var displayMessage: Swift.String?
- public var errorJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct Institution : Swift.Codable {
- public var id: LinkKit.InstitutionID
- public var name: Swift.String
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public struct ExitMetadata : Swift.Codable {
- public var status: LinkKit.ExitStatus?
- public var institution: LinkKit.Institution?
- public var linkSessionID: Swift.String?
+public struct EventMetadata : Swift.Codable {
+ public var accountNumberMask: Swift.String?
+ public var errorCode: LinkKit.ExitErrorCode?
+ public var errorMessage: Swift.String?
+ public var exitStatus: LinkKit.ExitStatus?
+ public var institutionID: LinkKit.InstitutionID?
+ public var institutionName: Swift.String?
+ public var institutionSearchQuery: Swift.String?
+ public var isUpdateMode: Swift.String?
+ public var matchReason: Swift.String?
+ public var linkSessionID: Swift.String
+ public var mfaType: LinkKit.MFAType?
public var requestID: Swift.String?
+ public var routingNumber: Swift.String?
+ public var selection: Swift.String?
+ public var timestamp: Foundation.Date
+ public var viewName: LinkKit.ViewName?
public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public enum EventName : Swift.CustomStringConvertible, Swift.Codable {
- case bankIncomeInsightsCompleted
- case closeOAuth
- case error
- case exit
- case failOAuth
- case handoff
- case identityVerificationStartStep
- case identityVerificationPassStep
- case identityVerificationFailStep
- case identityVerificationPendingReviewStep
- case identityVerificationCreateSession
- case identityVerificationResumeSession
- case identityVerificationPassSession
- case identityVerificationFailSession
- case identityVerificationPendingReviewSession
- case identityVerificationOpenUI
- case identityVerificationResumeUI
- case identityVerificationCloseUI
- case matchedSelectInstitution
- case matchedSelectVerifyMethod
- case open
- case openMyPlaid
- case openOAuth
- case searchInstitution
- case selectDegradedInstitution
- case selectFilteredInstitution
- case selectDownInstitution
- case selectInstitution
- case selectBrand
- case selectAuthType
- case submitAccountNumber
- case submitDocuments
- case submitDocumentsSuccess
- case submitDocumentsError
- case submitRoutingNumber
- case submitCredentials
- case submitMFA
- case transitionView
- case viewDataTypes
- case submitPhone
- case skipSubmitPhone
- case verifyPhone
- case connectNewInstitution
+public struct Plaid {
+ public enum CreateError : Swift.Error {
+ case configurationError(LinkKit.ConfigurationError)
+ }
+ public static func create(_ linkTokenConfiguration: LinkKit.LinkTokenConfiguration) -> Swift.Result
+ public static let version: Swift.String
+}
+public enum AuthErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case productNotReady
+ case verificationExpired
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
}
-public enum ViewName : Swift.CustomStringConvertible, Swift.Codable {
- case acceptTOS
- case connected
- case consent
- case credential
- case dataTransparency
- case dataTransparencyConsent
- case documentaryVerification
- case error
- case exit
- case kycCheck
- case loading
- case matchedConsent
- case matchedCredential
- case matchedMFA
- case mfa
- case numbers
- case numbersSelectInstitution
- case oauth
- case recaptcha
- case riskCheck
- case screening
- case selectAccount
- case selectAuthType
- case submitPhone
- case verifyPhone
- case selectSavedInstitution
- case selectSavedAccount
- case selectBrand
- case selectInstitution
- case selfieCheck
- case uploadDocuments
- case submitDocuments
- case submitDocumentsSuccess
- case submitDocumentsError
- case verifySMS
- case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+public enum Environment : Swift.CustomStringConvertible {
+ case production
+ case development
+ case sandbox
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
+ public static func == (a: LinkKit.Environment, b: LinkKit.Environment) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public var hashValue: Swift.Int {
+ get
+ }
}
-public struct EventMetadata : Swift.Codable {
- public var accountNumberMask: Swift.String?
- public var errorCode: LinkKit.ExitErrorCode?
- public var errorMessage: Swift.String?
- public var exitStatus: LinkKit.ExitStatus?
- public var institutionID: LinkKit.InstitutionID?
- public var institutionName: Swift.String?
- public var institutionSearchQuery: Swift.String?
- public var isUpdateMode: Swift.String?
- public var matchReason: Swift.String?
- public var linkSessionID: Swift.String
- public var mfaType: LinkKit.MFAType?
- public var requestID: Swift.String?
- public var routingNumber: Swift.String?
- public var selection: Swift.String?
- public var timestamp: Foundation.Date
- public var viewName: LinkKit.ViewName?
- public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
+public struct ExitError : Swift.Error, Swift.Codable {
+ public var errorCode: LinkKit.ExitErrorCode
+ public var errorMessage: Swift.String
+ public var displayMessage: Swift.String?
+ public var errorJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
public enum MFAType : Swift.CustomStringConvertible, Swift.Codable {
case code
case device
case questions
case selections
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
public static func == (a: LinkKit.MFAType, b: LinkKit.MFAType) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
-public enum PresentationMethod {
- case viewController(UIKit.UIViewController)
- case custom(LinkKit.PresentationHandler, _: LinkKit.DismissalHandler = { $0.presentingViewController?.dismiss(animated: true, completion: nil) })
+@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class EmbeddedSearchAndSelectView : UIKit.UIView {
+ @available(*, unavailable)
+ @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect)
+ @objc deinit
}
-public enum ExitErrorCode : Swift.Codable {
- case apiError(LinkKit.ApiErrorCode)
- case authError(LinkKit.AuthErrorCode)
- case assetReportError(LinkKit.AssetReportErrorCode)
- case `internal`(Swift.String)
- case institutionError(LinkKit.InstitutionErrorCode)
- case itemError(LinkKit.ItemErrorCode)
- case invalidInput(LinkKit.InvalidInputErrorCode)
- case invalidRequest(LinkKit.InvalidRequestErrorCode)
- case rateLimitExceeded(LinkKit.RateLimitErrorCode)
- case unknown(type: Swift.String, code: Swift.String)
- public init(from decoder: Swift.Decoder) throws
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegate {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didUnhighlightItemAt indexPath: Foundation.IndexPath)
+}
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDataSource {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
+}
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegateFlowLayout {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, layout collectionViewLayout: UIKit.UICollectionViewLayout, sizeForItemAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGSize
+}
+public enum InstitutionErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case institutionDown
+ case institutionNotResponding
+ case institutionNotAvailable
+ case institutionNoLongerSupported
+ case unknown(Swift.String)
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
}
public enum InvalidRequestErrorCode : Swift.Error, Swift.CustomStringConvertible {
case missingFields
@@ -498,42 +386,6 @@ public enum InvalidRequestErrorCode : Swift.Error, Swift.CustomStringConvertible
get
}
}
-public enum InvalidInputErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case invalidApiKeys
- case unauthorizedEnvironment
- case invalidAccessToken
- case invalidPublicToken
- case invalidProduct
- case invalidAccountId
- case invalidInstitution
- case tooManyVerificationAttempts
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-public enum RateLimitErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case accountsLimit
- case additionLimit
- case authLimit
- case identityLimit
- case incomeLimit
- case itemGetLimit
- case rateLimit
- case transactionsLimit
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-public enum ApiErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case internalServerError
- case plannedMaintenance
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
public enum ItemErrorCode : Swift.Error, Swift.CustomStringConvertible {
case insufficientCredentials
case invalidCredentials
@@ -559,13 +411,112 @@ public enum ItemErrorCode : Swift.Error, Swift.CustomStringConvertible {
get
}
}
-public enum AuthErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case productNotReady
- case verificationExpired
+public struct LinkEvent : Swift.Codable {
+ public var eventName: LinkKit.EventName
+ public var metadata: LinkKit.EventMetadata
+ public init(from decoder: any Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
+}
+public enum Product : Swift.CustomStringConvertible, Swift.CaseIterable {
+ case assets
+ case auth
+ case depositSwitch
+ case identity
+ case income
+ case investments
+ case liabilities
+ case liabilitiesReport
+ case paymentInitiation
+ case transactions
+ public var description: Swift.String {
+ get
+ }
+ public static func == (a: LinkKit.Product, b: LinkKit.Product) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public typealias AllCases = [LinkKit.Product]
+ public static var allCases: [LinkKit.Product] {
+ get
+ }
+ public var hashValue: Swift.Int {
+ get
+ }
+}
+public typealias PublicKey = Swift.String
+public typealias PublicToken = Swift.String
+public typealias PaymentToken = Swift.String
+public typealias DepositSwitchToken = Swift.String
+public typealias Language = Swift.String
+public typealias CountryCode = Swift.String
+public typealias PresentationHandler = (UIKit.UIViewController) -> Swift.Void
+public typealias DismissalHandler = (UIKit.UIViewController) -> Swift.Void
+public typealias OnSuccessHandler = (LinkKit.LinkSuccess) -> Swift.Void
+public typealias OnExitHandler = (LinkKit.LinkExit) -> Swift.Void
+public typealias OnEventHandler = (LinkKit.LinkEvent) -> Swift.Void
+public typealias RawJSONMetadata = Swift.String
+public typealias InstitutionID = Swift.String
+public typealias AccountID = Swift.String
+public typealias AccountMask = Swift.String
+public struct LinkTokenConfiguration {
+ public let token: Swift.String
+ public var onSuccess: LinkKit.OnSuccessHandler
+ public var onExit: (LinkKit.LinkExit) -> Swift.Void
+ public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
+ public var noLoadingState: Swift.Bool
+ public init(token: Swift.String, onSuccess: @escaping LinkKit.OnSuccessHandler)
+}
+public enum ViewName : Swift.CustomStringConvertible, Swift.Codable {
+ case acceptTOS
+ case connected
+ case consent
+ case credential
+ case dataTransparency
+ case dataTransparencyConsent
+ case documentaryVerification
+ case error
+ case exit
+ case kycCheck
+ case loading
+ case matchedConsent
+ case matchedCredential
+ case matchedMFA
+ case mfa
+ case numbers
+ case numbersSelectInstitution
+ case oauth
+ case recaptcha
+ case riskCheck
+ case screening
+ case selectAccount
+ case selectAuthType
+ case submitPhone
+ case verifyPhone
+ case selectSavedInstitution
+ case selectSavedAccount
+ case selectBrand
+ case selectInstitution
+ case selfieCheck
+ case uploadDocuments
+ case submitDocuments
+ case submitDocumentsSuccess
+ case submitDocumentsError
+ case verifySMS
+ case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
+}
+public enum VerificationStatus : Swift.CustomStringConvertible, Swift.Codable {
+ case pendingAutomaticVerification
+ case pendingManualVerification
+ case manuallyVerified
case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
+ public func encode(to encoder: any Swift.Encoder) throws
}
public enum AssetReportErrorCode : Swift.Error, Swift.CustomStringConvertible {
case productNotEnabled
@@ -580,36 +531,8 @@ public enum AssetReportErrorCode : Swift.Error, Swift.CustomStringConvertible {
get
}
}
-public enum InstitutionErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case institutionDown
- case institutionNotResponding
- case institutionNotAvailable
- case institutionNoLongerSupported
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class EmbeddedSearchAndSelectView : UIKit.UIView {
- @available(*, unavailable)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect)
- @objc deinit
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegate {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didUnhighlightItemAt indexPath: Foundation.IndexPath)
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDataSource {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegateFlowLayout {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, layout collectionViewLayout: UIKit.UICollectionViewLayout, sizeForItemAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGSize
-}
@_inheritsConvenienceInitializers @objc public class PLKPlaid : ObjectiveC.NSObject {
- @objc public static func createWithLinkTokenConfiguration(_ linkTokenConfiguration: LinkKit.PLKLinkTokenConfiguration, error: Foundation.NSErrorPointer) -> LinkKit.PLKHandler?
- @objc public static func createWithLinkPublicKeyConfiguration(_ linkPublicKeyConfiguration: LinkKit.PLKLinkPublicKeyConfiguration, error: Foundation.NSErrorPointer) -> LinkKit.PLKHandler?
+ @objc public static func createWithLinkTokenConfiguration(_ linkTokenConfiguration: LinkKit.PLKLinkTokenConfiguration, error: Foundation.NSErrorPointer) -> (any LinkKit.PLKHandler)?
@objc public static var sdkVersion: Swift.String {
@objc get
}
@@ -631,6 +554,15 @@ extension LinkKit.LinkEvent {
get
}
}
+public struct Account : Swift.Codable {
+ public let id: LinkKit.AccountID
+ public let name: Swift.String
+ public let mask: LinkKit.AccountMask?
+ public let subtype: LinkKit.AccountSubtype
+ public let verificationStatus: LinkKit.VerificationStatus?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
extension LinkKit.AccountSubtype {
public var description: Swift.String {
get
@@ -661,6 +593,25 @@ extension LinkKit.AccountSubtype.Investment {
get
}
}
+public protocol Handler {
+ func open(presentUsing method: LinkKit.PresentationMethod)
+ func createEmbeddedView(presentUsing: LinkKit.PresentationMethod) -> UIKit.UIView
+ func resumeAfterTermination(from redirectUri: Foundation.URL)
+}
+public enum InvalidInputErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case invalidApiKeys
+ case unauthorizedEnvironment
+ case invalidAccessToken
+ case invalidPublicToken
+ case invalidProduct
+ case invalidAccountId
+ case invalidInstitution
+ case tooManyVerificationAttempts
+ case unknown(Swift.String)
+ public var description: Swift.String {
+ get
+ }
+}
extension LinkKit.AccountSubtype : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Other : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Credit : Swift.CustomStringConvertible {}
@@ -669,7 +620,7 @@ extension LinkKit.AccountSubtype.Depository : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Investment : Swift.CustomStringConvertible {}
extension LinkKit.Environment : Swift.Equatable {}
extension LinkKit.Environment : Swift.Hashable {}
-extension LinkKit.Product : Swift.Equatable {}
-extension LinkKit.Product : Swift.Hashable {}
extension LinkKit.MFAType : Swift.Equatable {}
extension LinkKit.MFAType : Swift.Hashable {}
+extension LinkKit.Product : Swift.Equatable {}
+extension LinkKit.Product : Swift.Hashable {}
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftmodule b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftmodule
index 8a26cae7..880842ae 100644
Binary files a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftmodule and b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftmodule differ
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/module.modulemap b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/module.modulemap
index c64c56a7..3dcb1abf 100644
--- a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/module.modulemap
+++ b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Modules/module.modulemap
@@ -1,7 +1,7 @@
framework module LinkKit {
umbrella header "LinkKit.h"
-
export *
+
module * { export * }
}
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/PrivacyInfo.xcprivacy b/LinkKit.xcframework/ios-arm64/LinkKit.framework/PrivacyInfo.xcprivacy
new file mode 100644
index 00000000..79bc9e28
--- /dev/null
+++ b/LinkKit.xcframework/ios-arm64/LinkKit.framework/PrivacyInfo.xcprivacy
@@ -0,0 +1,17 @@
+
+
+
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryUserDefaults
+ NSPrivacyAccessedAPITypeReasons
+
+ CA92.1
+
+
+
+
+
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Threads_Threads.bundle/Assets.car b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Threads_Threads.bundle/Assets.car
index 394b8209..9e1071d5 100644
Binary files a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Threads_Threads.bundle/Assets.car and b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Threads_Threads.bundle/Assets.car differ
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Threads_Threads.bundle/Info.plist b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Threads_Threads.bundle/Info.plist
index 85be3f51..28eed5e6 100644
Binary files a/LinkKit.xcframework/ios-arm64/LinkKit.framework/Threads_Threads.bundle/Info.plist and b/LinkKit.xcframework/ios-arm64/LinkKit.framework/Threads_Threads.bundle/Info.plist differ
diff --git a/LinkKit.xcframework/ios-arm64/LinkKit.framework/_CodeSignature/CodeResources b/LinkKit.xcframework/ios-arm64/LinkKit.framework/_CodeSignature/CodeResources
index d6594d48..41528976 100644
--- a/LinkKit.xcframework/ios-arm64/LinkKit.framework/_CodeSignature/CodeResources
+++ b/LinkKit.xcframework/ios-arm64/LinkKit.framework/_CodeSignature/CodeResources
@@ -6,7 +6,7 @@
Headers/LinkKit-Swift.h
- mEeFETaBDMvnnX58Fh8s3ZJXUIE=
+ hKZyyPdQOdq49IweVV5sopH+lII=
Headers/LinkKit.h
@@ -18,43 +18,47 @@
Headers/PLKPlaid.h
- A+x/QlbemDTXdFsv7M2n5RWwaNI=
+ PSMc9KSjGIwlzsPZUg9SHmaJTJ0=
Info.plist
- +0N3XDq3v0DvfpzWLFSq0vmLL5M=
+ 2vxCgRjPWG6v+UuS9YX82RdC+qs=
Modules/LinkKit.swiftmodule/arm64-apple-ios.abi.json
- JiJPbTOM1lD1B03j/y6stsvISRY=
+ TRo4Cxd/FS5vq95VOqsOZ+vbddo=
Modules/LinkKit.swiftmodule/arm64-apple-ios.private.swiftinterface
- JUqB4VEiTcF9VKvc38ekkCOGEVE=
+ LBWH9NvZC6TgCL+cyBLwj+rYuAI=
Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftdoc
- BvRFnBjBD4jfYiN+4YnrR40V5t8=
+ Wna/n9CqqXdCpYXX8iBaET/whIw=
Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftinterface
- JUqB4VEiTcF9VKvc38ekkCOGEVE=
+ LBWH9NvZC6TgCL+cyBLwj+rYuAI=
Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftmodule
- Ax4fr6LHzziioeqCaHpGzbQ4oI8=
+ AR2gloerFT3cTu7Liu4jbRPxEkc=
Modules/module.modulemap
- IGZrYgWBkTH9Y2XouqghJVgp480=
+ CjYM9/d+oD9diRmCwMdBcESfnn0=
+
+ PrivacyInfo.xcprivacy
+
+ 6PyG/Sn5jh81qqGDYJ701GSxHBw=
Threads_Threads.bundle/Assets.car
- 2cczJYuarvLKJmqElzKDKjTyx+E=
+ Hfopg7Hb7WM3vtSKyq3m3ReCX4E=
Threads_Threads.bundle/Info.plist
- GlYDnY3+S9ibuQwzgX4fJpdkKH0=
+ wVtw2RQwDgprc1ZoXPFWn59csZQ=
files2
@@ -63,7 +67,7 @@
hash2
- roMGW+QEZbwst2S+Dan0ned+afXBQFViq6R+jOxgiYk=
+ MftUk3Ap0IB95gbBJRSlL8Ekq6f3QBTwLLxkgjasDDg=
Headers/LinkKit.h
@@ -84,63 +88,70 @@
hash2
- BNrneXh4OXdjGtuiNfYw4nM/NULFb/hK7BcRSjMUTHg=
+ cbaLsB1lwHgFlqTBdf/GFg1luH0OMh6iq6EU5/NZrWE=
Modules/LinkKit.swiftmodule/arm64-apple-ios.abi.json
hash2
- 5Nav2jB4DwflkfIb3cLY79p0hSgHVVkJvN9iGM/0Eqo=
+ Hs7rl80um4JErw8eEBxAXEb63zMwlIH1feYp72V+RtI=
Modules/LinkKit.swiftmodule/arm64-apple-ios.private.swiftinterface
hash2
- zhvCEWiwX+bj+5nFZc3oz2vOQIDrc8whKiu0cN61Sx8=
+ sbm9SKsfJfGEP8ZP81RQL/ySLltX4HXEq1FVSmIo9JI=
Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftdoc
hash2
- Am47LkByuD3jcTIeDQncR/vz+aj6RbJSB5MHKSwprl0=
+ eRLfgLTlB6ygb9TAL0WOYkwcVl6Jq6SZ+kiFIuT1YSo=
Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftinterface
hash2
- zhvCEWiwX+bj+5nFZc3oz2vOQIDrc8whKiu0cN61Sx8=
+ sbm9SKsfJfGEP8ZP81RQL/ySLltX4HXEq1FVSmIo9JI=
Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftmodule
hash2
- lh9iFGtJ6cs8q9ZFmgTZ32DT/0ERrtzSJ9CIrFlPK/U=
+ if2XtPo0IS8J0hUdWlGfpe0XbSy5MT9MiUQgXlfVKWY=
Modules/module.modulemap
hash2
- wJJZf3FpGVwt99rfoVFDFn44HBh4e6QdY4RHWn1vgyY=
+ +Cw8rJc7sIJTDYNZCWunJtWuNxIwF0q/SqcPv7cKwnM=
+
+
+ PrivacyInfo.xcprivacy
+
+ hash2
+
+ 3I1+H5p9p/M4HzB0a1kgbuYs4iW2n+O8u2YjT4RZvjU=
Threads_Threads.bundle/Assets.car
hash2
- A4iz8HbWI/Irly1n8L/blFT/3dYo7rlIhM/J/3udKsQ=
+ LvKm19qN3Me/T3N3SFp9QRYMgWc1yU6hpH7Op6WzW9Y=
Threads_Threads.bundle/Info.plist
hash2
- VRz6VHaUusbhixFcgHsoOGhP8paWawhfd2CD/GqmjqE=
+ TmSySNXAa79lFALucnpg/CDDcKdUuyGq79dhHDZpj6g=
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Headers/LinkKit-Swift.h b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Headers/LinkKit-Swift.h
index fe678fcf..ec4e96ae 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Headers/LinkKit-Swift.h
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Headers/LinkKit-Swift.h
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
-// Generated by Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
+// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
#ifndef LINKKIT_SWIFT_H
#define LINKKIT_SWIFT_H
#pragma clang diagnostic push
@@ -23,7 +23,6 @@
# include
#endif
-#pragma clang diagnostic ignored "-Wduplicate-method-match"
#pragma clang diagnostic ignored "-Wauto-import"
#if defined(__OBJC__)
#include
@@ -32,10 +31,30 @@
#include
#include
#include
+#include
+#include
+#include
+#include
#else
#include
#include
#include
+#include
+#endif
+#if defined(__cplusplus)
+#if defined(__arm64e__) && __has_include()
+# include
+#else
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
+# ifndef __ptrauth_swift_value_witness_function_pointer
+# define __ptrauth_swift_value_witness_function_pointer(x)
+# endif
+# ifndef __ptrauth_swift_class_method_pointer
+# define __ptrauth_swift_class_method_pointer(x)
+# endif
+#pragma clang diagnostic pop
+#endif
#endif
#if !defined(SWIFT_TYPEDEFS)
@@ -71,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# if __has_feature(objc_class_property)
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
# else
-# define SWIFT_CLASS_PROPERTY(...)
+# define SWIFT_CLASS_PROPERTY(...)
# endif
#endif
-
-#if __has_attribute(objc_runtime_name)
-# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
-#else
-# define SWIFT_RUNTIME_NAME(X)
+#if !defined(SWIFT_RUNTIME_NAME)
+# if __has_attribute(objc_runtime_name)
+# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
+# else
+# define SWIFT_RUNTIME_NAME(X)
+# endif
#endif
-#if __has_attribute(swift_name)
-# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
-#else
-# define SWIFT_COMPILE_NAME(X)
+#if !defined(SWIFT_COMPILE_NAME)
+# if __has_attribute(swift_name)
+# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
+# else
+# define SWIFT_COMPILE_NAME(X)
+# endif
#endif
-#if __has_attribute(objc_method_family)
-# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
-#else
-# define SWIFT_METHOD_FAMILY(X)
+#if !defined(SWIFT_METHOD_FAMILY)
+# if __has_attribute(objc_method_family)
+# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
+# else
+# define SWIFT_METHOD_FAMILY(X)
+# endif
#endif
-#if __has_attribute(noescape)
-# define SWIFT_NOESCAPE __attribute__((noescape))
-#else
-# define SWIFT_NOESCAPE
+#if !defined(SWIFT_NOESCAPE)
+# if __has_attribute(noescape)
+# define SWIFT_NOESCAPE __attribute__((noescape))
+# else
+# define SWIFT_NOESCAPE
+# endif
#endif
-#if __has_attribute(ns_consumed)
-# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
-#else
-# define SWIFT_RELEASES_ARGUMENT
+#if !defined(SWIFT_RELEASES_ARGUMENT)
+# if __has_attribute(ns_consumed)
+# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
+# else
+# define SWIFT_RELEASES_ARGUMENT
+# endif
#endif
-#if __has_attribute(warn_unused_result)
-# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
-#else
-# define SWIFT_WARN_UNUSED_RESULT
+#if !defined(SWIFT_WARN_UNUSED_RESULT)
+# if __has_attribute(warn_unused_result)
+# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
+# else
+# define SWIFT_WARN_UNUSED_RESULT
+# endif
#endif
-#if __has_attribute(noreturn)
-# define SWIFT_NORETURN __attribute__((noreturn))
-#else
-# define SWIFT_NORETURN
+#if !defined(SWIFT_NORETURN)
+# if __has_attribute(noreturn)
+# define SWIFT_NORETURN __attribute__((noreturn))
+# else
+# define SWIFT_NORETURN
+# endif
#endif
#if !defined(SWIFT_CLASS_EXTRA)
-# define SWIFT_CLASS_EXTRA
+# define SWIFT_CLASS_EXTRA
#endif
#if !defined(SWIFT_PROTOCOL_EXTRA)
-# define SWIFT_PROTOCOL_EXTRA
+# define SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_ENUM_EXTRA)
-# define SWIFT_ENUM_EXTRA
+# define SWIFT_ENUM_EXTRA
#endif
#if !defined(SWIFT_CLASS)
# if __has_attribute(objc_subclassing_restricted)
@@ -137,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
# endif
#endif
-
#if !defined(SWIFT_PROTOCOL)
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
#endif
-
#if !defined(SWIFT_EXTENSION)
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
#endif
-
#if !defined(OBJC_DESIGNATED_INITIALIZER)
# if __has_attribute(objc_designated_initializer)
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
# else
-# define OBJC_DESIGNATED_INITIALIZER
+# define OBJC_DESIGNATED_INITIALIZER
# endif
#endif
#if !defined(SWIFT_ENUM_ATTR)
-# if defined(__has_attribute) && __has_attribute(enum_extensibility)
+# if __has_attribute(enum_extensibility)
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
# else
-# define SWIFT_ENUM_ATTR(_extensibility)
+# define SWIFT_ENUM_ATTR(_extensibility)
# endif
#endif
#if !defined(SWIFT_ENUM)
@@ -187,14 +216,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(SWIFT_DEPRECATED_MSG)
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
#endif
-#if __has_feature(attribute_diagnose_if_objc)
-# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
-#else
-# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
+#if !defined(SWIFT_DEPRECATED_OBJC)
+# if __has_feature(attribute_diagnose_if_objc)
+# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
+# else
+# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
+# endif
#endif
#if defined(__OBJC__)
#if !defined(IBSegueAction)
-# define IBSegueAction
+# define IBSegueAction
#endif
#endif
#if !defined(SWIFT_EXTERN)
@@ -207,30 +238,46 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(SWIFT_CALL)
# define SWIFT_CALL __attribute__((swiftcall))
#endif
+#if !defined(SWIFT_INDIRECT_RESULT)
+# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
+#endif
+#if !defined(SWIFT_CONTEXT)
+# define SWIFT_CONTEXT __attribute__((swift_context))
+#endif
+#if !defined(SWIFT_ERROR_RESULT)
+# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
+#endif
#if defined(__cplusplus)
-#if !defined(SWIFT_NOEXCEPT)
# define SWIFT_NOEXCEPT noexcept
-#endif
#else
-#if !defined(SWIFT_NOEXCEPT)
# define SWIFT_NOEXCEPT
#endif
+#if !defined(SWIFT_C_INLINE_THUNK)
+# if __has_attribute(always_inline)
+# if __has_attribute(nodebug)
+# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
+# else
+# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
+# endif
+# else
+# define SWIFT_C_INLINE_THUNK inline
+# endif
#endif
-#if defined(__cplusplus)
-#if !defined(SWIFT_CXX_INT_DEFINED)
-#define SWIFT_CXX_INT_DEFINED
-namespace swift {
-using Int = ptrdiff_t;
-using UInt = size_t;
-}
+#if defined(_WIN32)
+#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
+# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
+#endif
+#else
+#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
+# define SWIFT_IMPORT_STDLIB_SYMBOL
#endif
#endif
#if defined(__OBJC__)
-#if __has_feature(modules)
+#if __has_feature(objc_modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
-@import CoreGraphics;
+@import CoreFoundation;
@import ObjectiveC;
@import UIKit;
#endif
@@ -285,19 +332,15 @@ SWIFT_CLASS("_TtC7LinkKit27EmbeddedSearchAndSelectView")
-
-
@class PLKLinkTokenConfiguration;
@class NSError;
@protocol PLKHandler;
-@class PLKLinkPublicKeyConfiguration;
@class NSString;
/// Plaid is the main entrypoint for the Plaid Link iOS SDK.
SWIFT_CLASS("_TtC7LinkKit8PLKPlaid")
@interface PLKPlaid : NSObject
+ (id _Nullable)createWithLinkTokenConfiguration:(PLKLinkTokenConfiguration * _Nonnull)linkTokenConfiguration error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
-+ (id _Nullable)createWithLinkPublicKeyConfiguration:(PLKLinkPublicKeyConfiguration * _Nonnull)linkPublicKeyConfiguration error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
/// The version of the Plaid Link iOS SDK.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull sdkVersion;)
+ (NSString * _Nonnull)sdkVersion SWIFT_WARN_UNUSED_RESULT;
@@ -305,17 +348,17 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No
@end
-#endif
-#if defined(__cplusplus)
#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
+#if defined(__cplusplus)
+#endif
#pragma clang diagnostic pop
#endif
#elif defined(__x86_64__) && __x86_64__
-// Generated by Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
+// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
#ifndef LINKKIT_SWIFT_H
#define LINKKIT_SWIFT_H
#pragma clang diagnostic push
@@ -338,7 +381,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No
# include
#endif
-#pragma clang diagnostic ignored "-Wduplicate-method-match"
#pragma clang diagnostic ignored "-Wauto-import"
#if defined(__OBJC__)
#include
@@ -347,10 +389,30 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No
#include
#include
#include
+#include
+#include
+#include
+#include
#else
#include
#include
#include
+#include
+#endif
+#if defined(__cplusplus)
+#if defined(__arm64e__) && __has_include()
+# include
+#else
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
+# ifndef __ptrauth_swift_value_witness_function_pointer
+# define __ptrauth_swift_value_witness_function_pointer(x)
+# endif
+# ifndef __ptrauth_swift_class_method_pointer
+# define __ptrauth_swift_class_method_pointer(x)
+# endif
+#pragma clang diagnostic pop
+#endif
#endif
#if !defined(SWIFT_TYPEDEFS)
@@ -386,53 +448,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# if __has_feature(objc_class_property)
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
# else
-# define SWIFT_CLASS_PROPERTY(...)
+# define SWIFT_CLASS_PROPERTY(...)
# endif
#endif
-
-#if __has_attribute(objc_runtime_name)
-# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
-#else
-# define SWIFT_RUNTIME_NAME(X)
+#if !defined(SWIFT_RUNTIME_NAME)
+# if __has_attribute(objc_runtime_name)
+# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
+# else
+# define SWIFT_RUNTIME_NAME(X)
+# endif
#endif
-#if __has_attribute(swift_name)
-# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
-#else
-# define SWIFT_COMPILE_NAME(X)
+#if !defined(SWIFT_COMPILE_NAME)
+# if __has_attribute(swift_name)
+# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
+# else
+# define SWIFT_COMPILE_NAME(X)
+# endif
#endif
-#if __has_attribute(objc_method_family)
-# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
-#else
-# define SWIFT_METHOD_FAMILY(X)
+#if !defined(SWIFT_METHOD_FAMILY)
+# if __has_attribute(objc_method_family)
+# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
+# else
+# define SWIFT_METHOD_FAMILY(X)
+# endif
#endif
-#if __has_attribute(noescape)
-# define SWIFT_NOESCAPE __attribute__((noescape))
-#else
-# define SWIFT_NOESCAPE
+#if !defined(SWIFT_NOESCAPE)
+# if __has_attribute(noescape)
+# define SWIFT_NOESCAPE __attribute__((noescape))
+# else
+# define SWIFT_NOESCAPE
+# endif
#endif
-#if __has_attribute(ns_consumed)
-# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
-#else
-# define SWIFT_RELEASES_ARGUMENT
+#if !defined(SWIFT_RELEASES_ARGUMENT)
+# if __has_attribute(ns_consumed)
+# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
+# else
+# define SWIFT_RELEASES_ARGUMENT
+# endif
#endif
-#if __has_attribute(warn_unused_result)
-# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
-#else
-# define SWIFT_WARN_UNUSED_RESULT
+#if !defined(SWIFT_WARN_UNUSED_RESULT)
+# if __has_attribute(warn_unused_result)
+# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
+# else
+# define SWIFT_WARN_UNUSED_RESULT
+# endif
#endif
-#if __has_attribute(noreturn)
-# define SWIFT_NORETURN __attribute__((noreturn))
-#else
-# define SWIFT_NORETURN
+#if !defined(SWIFT_NORETURN)
+# if __has_attribute(noreturn)
+# define SWIFT_NORETURN __attribute__((noreturn))
+# else
+# define SWIFT_NORETURN
+# endif
#endif
#if !defined(SWIFT_CLASS_EXTRA)
-# define SWIFT_CLASS_EXTRA
+# define SWIFT_CLASS_EXTRA
#endif
#if !defined(SWIFT_PROTOCOL_EXTRA)
-# define SWIFT_PROTOCOL_EXTRA
+# define SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_ENUM_EXTRA)
-# define SWIFT_ENUM_EXTRA
+# define SWIFT_ENUM_EXTRA
#endif
#if !defined(SWIFT_CLASS)
# if __has_attribute(objc_subclassing_restricted)
@@ -452,28 +527,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
# endif
#endif
-
#if !defined(SWIFT_PROTOCOL)
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
#endif
-
#if !defined(SWIFT_EXTENSION)
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
#endif
-
#if !defined(OBJC_DESIGNATED_INITIALIZER)
# if __has_attribute(objc_designated_initializer)
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
# else
-# define OBJC_DESIGNATED_INITIALIZER
+# define OBJC_DESIGNATED_INITIALIZER
# endif
#endif
#if !defined(SWIFT_ENUM_ATTR)
-# if defined(__has_attribute) && __has_attribute(enum_extensibility)
+# if __has_attribute(enum_extensibility)
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
# else
-# define SWIFT_ENUM_ATTR(_extensibility)
+# define SWIFT_ENUM_ATTR(_extensibility)
# endif
#endif
#if !defined(SWIFT_ENUM)
@@ -502,14 +574,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(SWIFT_DEPRECATED_MSG)
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
#endif
-#if __has_feature(attribute_diagnose_if_objc)
-# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
-#else
-# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
+#if !defined(SWIFT_DEPRECATED_OBJC)
+# if __has_feature(attribute_diagnose_if_objc)
+# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
+# else
+# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
+# endif
#endif
#if defined(__OBJC__)
#if !defined(IBSegueAction)
-# define IBSegueAction
+# define IBSegueAction
#endif
#endif
#if !defined(SWIFT_EXTERN)
@@ -522,30 +596,46 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(SWIFT_CALL)
# define SWIFT_CALL __attribute__((swiftcall))
#endif
+#if !defined(SWIFT_INDIRECT_RESULT)
+# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
+#endif
+#if !defined(SWIFT_CONTEXT)
+# define SWIFT_CONTEXT __attribute__((swift_context))
+#endif
+#if !defined(SWIFT_ERROR_RESULT)
+# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
+#endif
#if defined(__cplusplus)
-#if !defined(SWIFT_NOEXCEPT)
# define SWIFT_NOEXCEPT noexcept
-#endif
#else
-#if !defined(SWIFT_NOEXCEPT)
# define SWIFT_NOEXCEPT
#endif
+#if !defined(SWIFT_C_INLINE_THUNK)
+# if __has_attribute(always_inline)
+# if __has_attribute(nodebug)
+# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
+# else
+# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
+# endif
+# else
+# define SWIFT_C_INLINE_THUNK inline
+# endif
#endif
-#if defined(__cplusplus)
-#if !defined(SWIFT_CXX_INT_DEFINED)
-#define SWIFT_CXX_INT_DEFINED
-namespace swift {
-using Int = ptrdiff_t;
-using UInt = size_t;
-}
+#if defined(_WIN32)
+#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
+# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
+#endif
+#else
+#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
+# define SWIFT_IMPORT_STDLIB_SYMBOL
#endif
#endif
#if defined(__OBJC__)
-#if __has_feature(modules)
+#if __has_feature(objc_modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
-@import CoreGraphics;
+@import CoreFoundation;
@import ObjectiveC;
@import UIKit;
#endif
@@ -600,19 +690,15 @@ SWIFT_CLASS("_TtC7LinkKit27EmbeddedSearchAndSelectView")
-
-
@class PLKLinkTokenConfiguration;
@class NSError;
@protocol PLKHandler;
-@class PLKLinkPublicKeyConfiguration;
@class NSString;
/// Plaid is the main entrypoint for the Plaid Link iOS SDK.
SWIFT_CLASS("_TtC7LinkKit8PLKPlaid")
@interface PLKPlaid : NSObject
+ (id _Nullable)createWithLinkTokenConfiguration:(PLKLinkTokenConfiguration * _Nonnull)linkTokenConfiguration error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
-+ (id _Nullable)createWithLinkPublicKeyConfiguration:(PLKLinkPublicKeyConfiguration * _Nonnull)linkPublicKeyConfiguration error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
/// The version of the Plaid Link iOS SDK.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull sdkVersion;)
+ (NSString * _Nonnull)sdkVersion SWIFT_WARN_UNUSED_RESULT;
@@ -620,12 +706,12 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No
@end
-#endif
-#if defined(__cplusplus)
#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
+#if defined(__cplusplus)
+#endif
#pragma clang diagnostic pop
#endif
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Headers/PLKPlaid.h b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Headers/PLKPlaid.h
index ff088713..9aa24573 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Headers/PLKPlaid.h
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Headers/PLKPlaid.h
@@ -566,92 +566,12 @@ typedef void(^PLKOnEventHandler)(PLKLinkEvent *);
@end
-@interface PLKOAuthNonceConfiguration : NSObject
-
-@property(nonatomic, readonly, copy) NSString *nonce;
-@property(nonatomic, readonly) NSURL *redirectUri;
-
-- (instancetype)initWithNonce:(NSString *)nonce
- redirectUri:(NSURL *)redirectUri NS_DESIGNATED_INITIALIZER;
-- (instancetype)init NS_UNAVAILABLE;
-+ (instancetype)createWithNonce:(NSString *)nonce
- redirectUri:(NSURL *)redirectUri;
-
-@end
-
-@interface PLKLinkPublicKeyConfigurationToken : NSObject
-
-@property(nonatomic, readonly, copy) NSString *publicKey;
-@property(nonatomic, readonly, nullable, copy) NSString *paymentToken;
-@property(nonatomic, readonly, nullable, copy) NSString *publicToken;
-@property(nonatomic, readonly, nullable, copy) NSString *depositSwitchToken;
-
-+ (instancetype)createWithPaymentToken:(NSString *)paymentToken
- publicKey:(NSString *)publicKey;
-
-+ (instancetype)createWithPublicToken:(NSString *)publicToken
- publicKey:(NSString *)publicKey;
-
-+ (instancetype)createWithDepositSwitchToken:(NSString *)depositSwitchToken
- publicKey:(NSString *)publicKey;
-
-+ (instancetype)createWithPublicKey:(NSString *)publicKey;
-
-@end
-
typedef NS_ENUM(NSInteger, PLKEnvironment) {
PLKEnvironmentProduction,
PLKEnvironmentDevelopment,
PLKEnvironmentSandbox,
};
-@interface PLKLinkPublicKeyConfiguration : NSObject
-
-@property(nonatomic, readonly, copy) NSString *clientName;
-@property(nonatomic, readonly) PLKEnvironment environment;
-
-@property(nonatomic, copy) PLKLanguage *language;
-@property(nonatomic, strong) PLKLinkPublicKeyConfigurationToken *token;
-@property(nonatomic, copy) NSArray *countryCodes;
-
-@property(nonatomic) PLKOnSuccessHandler onSuccess;
-@property(nonatomic, strong) PLKOnExitHandler onExit;
-@property(nonatomic, strong) PLKOnEventHandler onEvent;
-
-@property(nonatomic, copy) NSArray> *accountSubtypes;
-
-@property(nonatomic, nullable) NSURL *webhook;
-
-@property(nonatomic, nullable) PLKOAuthNonceConfiguration *oauthConfiguration;
-
-@property(nonatomic, nullable, copy) NSString *userLegalName;
-@property(nonatomic, nullable, copy) NSString *userEmailAddress;
-@property(nonatomic, nullable, copy) NSString *userPhoneNumber;
-
-@property(nonatomic, nullable, copy) NSString *linkCustomizationName;
-
-/// An array of PLKProduct enum cases wrapped in an NSNumber.
-@property(nonatomic, readwrite, copy) NSArray *products;
-
-- (instancetype)initWithClientName:(NSString *)clientName
- environment:(PLKEnvironment)environment
- products:(NSArray *)products
- language:(PLKLanguage *)language
- token:(PLKLinkPublicKeyConfigurationToken *)token
- countryCodes:(NSArray *)countryCodes
- onSuccess:(PLKOnSuccessHandler)successHandler;
-- (instancetype)init NS_UNAVAILABLE;
-
-+ (instancetype)createWithClientName:(NSString *)clientName
- environment:(PLKEnvironment)environment
- products:(NSArray *)products
- language:(PLKLanguage *)language
- token:(PLKLinkPublicKeyConfigurationToken *)token
- countryCodes:(NSArray *)countryCodes
- onSuccess:(PLKOnSuccessHandler)successHandler;
-
-@end
-
/// Both `PLKPresentationHandler` and `PLKDismissalHandler` clsoures take the Plaid Link View Controller to be
/// presented or dismissed as a parameter.
typedef void(^PLKPresentationHandler)(UIViewController *);
@@ -661,31 +581,13 @@ typedef void(^PLKDismissalHandler)(UIViewController *);
- (void)openWithContextViewController:(UIViewController *)viewController;
-- (void)openWithContextViewController:(UIViewController *)viewController
- options:(NSDictionary *)options;
-
-- (void)openWithPresentationHandler:(PLKPresentationHandler)presentationHandler DEPRECATED_MSG_ATTRIBUTE("openWithPresentationHandler: is deprecated in favor openWithPresentationHandler:dismissalHandler:");
- (void)openWithPresentationHandler:(PLKPresentationHandler)presentationHandler
dismissalHandler:(PLKDismissalHandler)dismissalHandler;
-- (void)openWithPresentationHandler:(PLKPresentationHandler)presentationHandler
-options:(NSDictionary *)options DEPRECATED_MSG_ATTRIBUTE("openWithPresentationHandler:options: is deprecated in favor openWithPresentationHandler:dismissalHandler:options:");
-
-- (void)openWithPresentationHandler:(PLKPresentationHandler)presentationHandler
- dismissalHandler:(PLKDismissalHandler)dismissalHandler
- options:(NSDictionary *)options;
-
-- (void)createEmbeddedView:(PLKPresentationHandler)presentationHandler
- dismissalHandler:(PLKDismissalHandler)dismissalHandler
- errorCompletion:(void (^) (NSError *))onError
- successCompletion:(void (^) (UIView *))onSuccess;
-
-- (void) createEmbeddedView:(UIViewController *)viewController
- errorCompletion:(void (^) (NSError *))onError
- successCompletion:(void (^) (UIView *))onSuccess;
+- (UIView *)createEmbeddedView:(PLKPresentationHandler)presentationHandler
+ dismissalHandler:(PLKDismissalHandler)dismissalHandler;
-- (NSError * __nullable)continueFromRedirectUri:(NSURL *)redirectUri DEPRECATED_MSG_ATTRIBUTE("continueFromRedirectUri: is deprecated in favor continueWithRedirectUri:");
-- (void)continueWithRedirectUri:(NSURL *)redirectUri DEPRECATED_MSG_ATTRIBUTE("This function will be removed in LinkKit V5.0.0. This function should only be used if your app crashed or was killed during an out-of-process OAuth flow. Use `resumeAfterTermination(from redirectUri: URL)`");
+- (UIView *) createEmbeddedView:(UIViewController *)viewController;
- (void)resumeAfterTermination:(NSURL *)redirectUri;
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/LinkKit b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/LinkKit
index 1141eca7..5ec3bc8d 100755
Binary files a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/LinkKit and b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/LinkKit differ
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.abi.json b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.abi.json
index c69ff71d..d1d77603 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.abi.json
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.abi.json
@@ -11,768 +11,786 @@
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "PlaidLinkViewController",
- "printedName": "PlaidLinkViewController",
+ "name": "PresentationMethod",
+ "printedName": "PresentationMethod",
"children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(log:)",
+ "kind": "Var",
+ "name": "viewController",
+ "printedName": "viewController",
"children": [
{
- "kind": "TypeNominal",
- "name": "PlaidLinkViewController",
- "printedName": "LinkKit.PlaidLinkViewController",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "hasDefaultArg": true,
- "usr": "s:3LogAAV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PresentationMethod.Type) -> (UIKit.UIViewController) -> LinkKit.PresentationMethod",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> LinkKit.PresentationMethod",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PresentationMethod.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit05PlaidA14ViewControllerC3logAC3LogAEV_tcfc",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC3logAC3LogAEV_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18PresentationMethodO14viewControlleryACSo06UIViewF0CcACmF",
+ "mangledName": "$s7LinkKit18PresentationMethodO14viewControlleryACSo06UIViewF0CcACmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Var",
+ "name": "custom",
+ "printedName": "custom",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PlaidLinkViewController?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PresentationMethod.Type) -> (@escaping (UIKit.UIViewController) -> (), @escaping (UIKit.UIViewController) -> ()) -> LinkKit.PresentationMethod",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(@escaping (UIKit.UIViewController) -> (), @escaping (UIKit.UIViewController) -> ()) -> LinkKit.PresentationMethod",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "((UIKit.UIViewController) -> (), (UIKit.UIViewController) -> ())",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "PlaidLinkViewController",
- "printedName": "LinkKit.PlaidLinkViewController",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
+ "name": "Metatype",
+ "printedName": "LinkKit.PresentationMethod.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18PresentationMethodO6customyACySo16UIViewControllerCc_yAFctcACmF",
+ "mangledName": "$s7LinkKit18PresentationMethodO6customyACySo16UIViewControllerCc_yAFctcACmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
- },
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit18PresentationMethodO",
+ "mangledName": "$s7LinkKit18PresentationMethodO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ExitMetadata",
+ "printedName": "ExitMetadata",
+ "children": [
{
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "kind": "Var",
+ "name": "status",
+ "printedName": "status",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC11viewDidLoadyyF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
+ "HasInitialValue",
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "transitionTo",
- "printedName": "transitionTo(pane:)",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit05PlaidA14ViewControllerC12transitionTo4paneySo06UIViewE0C_tF",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC12transitionTo4paneySo06UIViewE0C_tF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "log",
- "printedName": "log",
- "children": [
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
{
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit05PlaidA14ViewControllerC3log33_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LL3LogAFVvp",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC3log33_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LL3LogAFVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "$__lazy_storage_$_presentedPaneViewController",
- "printedName": "$__lazy_storage_$_presentedPaneViewController",
+ "name": "institution",
+ "printedName": "institution",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "UIKit.UIViewController?",
+ "printedName": "LinkKit.Institution?",
"children": [
{
"kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit05PlaidA14ViewControllerC031$__lazy_storage_$_presentedPanedE033_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LLSo06UIViewE0CSgvp",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC031$__lazy_storage_$_presentedPanedE033_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LLSo06UIViewE0CSgvp",
+ "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvp",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
"HasStorage",
- "Final"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 1,
- "hasStorage": true
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PlaidLinkViewController",
- "printedName": "LinkKit.PlaidLinkViewController",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
- },
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.Institution?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.Institution?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SearchAndSelectViewController",
- "printedName": "SearchAndSelectViewController",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SearchAndSelectViewController",
- "printedName": "LinkKit.SearchAndSelectViewController",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
{
- "kind": "TypeNominal",
- "name": "SearchAndSelectViewModel",
- "printedName": "Workflow.SearchAndSelectViewModel",
- "usr": "s:8Workflow24SearchAndSelectViewModelC"
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit29SearchAndSelectViewControllerC4withAC8Workflow0cdeF5ModelC_tcfc",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC4withAC8Workflow0cdeF5ModelC_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Var",
+ "name": "linkSessionID",
+ "printedName": "linkSessionID",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.SearchAndSelectViewController?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "SearchAndSelectViewController",
- "printedName": "LinkKit.SearchAndSelectViewController",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC5coderACSgSo7NSCoderC_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC11viewDidLoadyyF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
+ "HasInitialValue",
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tableView",
- "printedName": "tableView(_:didSelectRowAt:)",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
{
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)tableView:didSelectRowAtIndexPath:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC05tableF0_03didE5RowAtySo07UITableF0C_10Foundation9IndexPathVtF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "tableView:didSelectRowAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "numberOfSections",
- "printedName": "numberOfSections(in:)",
+ "kind": "Var",
+ "name": "requestID",
+ "printedName": "requestID",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)numberOfSectionsInTableView:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC16numberOfSections2inSiSo07UITableF0C_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "numberOfSectionsInTableView:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
+ "HasInitialValue",
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tableView",
- "printedName": "tableView(_:numberOfRowsInSection:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)tableView:numberOfRowsInSection:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC05tableF0_21numberOfRowsInSectionSiSo07UITableF0C_SitF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "tableView:numberOfRowsInSection:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tableView",
- "printedName": "tableView(_:cellForRowAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITableViewCell",
- "printedName": "UIKit.UITableViewCell",
- "usr": "c:objc(cs)UITableViewCell"
- },
- {
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)tableView:cellForRowAtIndexPath:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC05tableF0_12cellForRowAtSo07UITableF4CellCSo0mF0C_10Foundation9IndexPathVtF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "tableView:cellForRowAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tableView",
- "printedName": "tableView(_:willDisplay:forRowAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "UITableViewCell",
- "printedName": "UIKit.UITableViewCell",
- "usr": "c:objc(cs)UITableViewCell"
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
{
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)tableView:willDisplayCell:forRowAtIndexPath:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC05tableF0_11willDisplay8forRowAtySo07UITableF0C_So0nF4CellC10Foundation9IndexPathVtF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "tableView:willDisplayCell:forRowAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "metadataJSON",
+ "printedName": "metadataJSON",
"children": [
{
"kind": "TypeNominal",
- "name": "SearchAndSelectViewModel",
- "printedName": "Workflow.SearchAndSelectViewModel",
- "usr": "s:8Workflow24SearchAndSelectViewModelC"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit29SearchAndSelectViewControllerC9viewModel33_66F8CC49042D8C198FF1EBA3FDD66154LL8Workflow0cdefI0Cvp",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC9viewModel33_66F8CC49042D8C198FF1EBA3FDD66154LL8Workflow0cdefI0Cvp",
+ "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
+ "HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
},
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(style:)",
+ "printedName": "init(status:institution:linkSessionID:requestID:metadataJSON:)",
"children": [
{
"kind": "TypeNominal",
- "name": "SearchAndSelectViewController",
- "printedName": "LinkKit.SearchAndSelectViewController",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController"
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
},
{
"kind": "TypeNominal",
- "name": "Style",
- "printedName": "UIKit.UITableView.Style",
- "usr": "c:@E@UITableViewStyle"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)initWithStyle:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC5styleACSo07UITableF5StyleV_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithStyle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.Institution?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
- "name": "SearchAndSelectViewController",
- "printedName": "LinkKit.SearchAndSelectViewController",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
@@ -786,112 +804,203 @@
"usr": "s:SS"
}
],
+ "hasDefaultArg": true,
"usr": "s:Sq"
},
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
+ "hasDefaultArg": true,
"usr": "s:Sq"
}
],
"declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "usr": "s:7LinkKit12ExitMetadataV6status11institution13linkSessionID07requestI012metadataJSONAcA0C6StatusOSg_AA11InstitutionVSgSSSgA2Otcfc",
+ "mangledName": "$s7LinkKit12ExitMetadataV6status11institution13linkSessionID07requestI012metadataJSONAcA0C6StatusOSg_AA11InstitutionVSgSSSgA2Otcfc",
"moduleName": "LinkKit",
- "overriding": true,
"implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
"init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UITableViewController",
- "superclassNames": [
- "UIKit.UITableViewController",
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
},
{
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit12ExitMetadataVACycfc",
+ "mangledName": "$s7LinkKit12ExitMetadataVACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
},
{
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit12ExitMetadataV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit12ExitMetadataV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit12ExitMetadataV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit12ExitMetadataV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit12ExitMetadataV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit12ExitMetadataV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKExitMetadata",
+ "printedName": "LinkKit.PLKExitMetadata",
+ "usr": "c:objc(cs)PLKExitMetadata"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKExitMetadata",
+ "printedName": "LinkKit.PLKExitMetadata",
+ "usr": "c:objc(cs)PLKExitMetadata"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit12ExitMetadataV",
+ "mangledName": "$s7LinkKit12ExitMetadataV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
@@ -902,128 +1011,50 @@
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "ComponentPaneViewModel",
- "printedName": "ComponentPaneViewModel",
+ "name": "ExitErrorCode",
+ "printedName": "ExitErrorCode",
"children": [
{
"kind": "Var",
- "name": "content",
- "printedName": "content",
+ "name": "apiError",
+ "printedName": "apiError",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ComponentPaneViewModel.Type) -> (Threads.NavigationProperties?, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.ApiErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Threads.NavigationProperties?, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "printedName": "(LinkKit.ApiErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(navigation: Threads.NavigationProperties?, content: LinkKit.Component)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Threads.NavigationProperties?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NavigationProperties",
- "printedName": "Threads.NavigationProperties",
- "usr": "s:7Threads20NavigationPropertiesV"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- }
- ]
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ComponentPaneViewModel.Type",
+ "printedName": "LinkKit.ExitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
]
}
@@ -1031,77 +1062,52 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit22ComponentPaneViewModelO7contentyAC7Threads20NavigationPropertiesVSg_AA0C0VtcACmF",
- "mangledName": "$s7LinkKit22ComponentPaneViewModelO7contentyAC7Threads20NavigationPropertiesVSg_AA0C0VtcACmF",
+ "usr": "s:7LinkKit13ExitErrorCodeO03apiD0yAcA03ApidE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD0yAcA03ApidE0OcACmF",
"moduleName": "LinkKit",
- "fixedbinaryorder": 0
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "fixedFooter",
- "printedName": "fixedFooter",
+ "name": "authError",
+ "printedName": "authError",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ComponentPaneViewModel.Type) -> (Threads.NavigationProperties?, LinkKit.Component, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.AuthErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Threads.NavigationProperties?, LinkKit.Component, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "printedName": "(LinkKit.AuthErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(navigation: Threads.NavigationProperties?, content: LinkKit.Component, footer: LinkKit.Component)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Threads.NavigationProperties?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NavigationProperties",
- "printedName": "Threads.NavigationProperties",
- "usr": "s:7Threads20NavigationPropertiesV"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- }
- ]
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ComponentPaneViewModel.Type",
+ "printedName": "LinkKit.ExitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
]
}
@@ -1109,497 +1115,502 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit22ComponentPaneViewModelO11fixedFooteryAC7Threads20NavigationPropertiesVSg_AA0C0VAJtcACmF",
- "mangledName": "$s7LinkKit22ComponentPaneViewModelO11fixedFooteryAC7Threads20NavigationPropertiesVSg_AA0C0VAJtcACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit22ComponentPaneViewModelO",
- "mangledName": "$s7LinkKit22ComponentPaneViewModelO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ComponentPaneViewController",
- "printedName": "ComponentPaneViewController",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ComponentPaneViewController",
- "printedName": "LinkKit.ComponentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC4withAcA0cdE5ModelO_tcfc",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC4withAcA0cdE5ModelO_tcfc",
+ "usr": "s:7LinkKit13ExitErrorCodeO04authD0yAcA04AuthdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04authD0yAcA04AuthdE0OcACmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Var",
+ "name": "assetReportError",
+ "printedName": "assetReportError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ComponentPaneViewController?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.AssetReportErrorCode) -> LinkKit.ExitErrorCode",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewController",
- "printedName": "LinkKit.ComponentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD0yAcA05AssetgdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD0yAcA05AssetgdE0OcACmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
- "kind": "TypeDecl",
- "name": "TransitionAnimation",
- "printedName": "TransitionAnimation",
+ "kind": "Var",
+ "name": "internal",
+ "printedName": "internal",
"children": [
{
- "kind": "Var",
- "name": "push",
- "printedName": "push",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (Swift.String) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ComponentPaneViewController.TransitionAnimation.Type) -> LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "printedName": "(Swift.String) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4pushyA2EmF",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4pushyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO8internalyACSScACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO8internalyACSScACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "institutionError",
+ "printedName": "institutionError",
+ "children": [
{
- "kind": "Var",
- "name": "pop",
- "printedName": "pop",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InstitutionErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ComponentPaneViewController.TransitionAnimation.Type) -> LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "printedName": "(LinkKit.InstitutionErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
- }
- ]
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO3popyA2EmF",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO3popyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
},
{
"kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO2eeoiySbAE_AEtFZ",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO2eeoiySbAE_AEtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivp",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivg",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ ]
}
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO011institutionD0yAcA011InstitutiondE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD0yAcA011InstitutiondE0OcACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "itemError",
+ "printedName": "itemError",
+ "children": [
{
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.ItemErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
},
{
"kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4hash4intoys6HasherVz_tF",
- "moduleName": "LinkKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
+ ]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO04itemD0yAcA04ItemdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD0yAcA04ItemdE0OcACmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
]
},
{
- "kind": "Function",
- "name": "transition",
- "printedName": "transition(to:animation:)",
+ "kind": "Var",
+ "name": "invalidInput",
+ "printedName": "invalidInput",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InvalidInputErrorCode) -> LinkKit.ExitErrorCode",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
}
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC10transition2to9animationyAA0cdE5ModelO_AC19TransitionAnimationOSgtF",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC10transition2to9animationyAA0cdE5ModelO_AC19TransitionAnimationOSgtF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO12invalidInputyAcA07InvalidgdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO12invalidInputyAcA07InvalidgdE0OcACmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "kind": "Var",
+ "name": "invalidRequest",
+ "printedName": "invalidRequest",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InvalidRequestErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC11viewDidLoadyyF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO14invalidRequestyAcA07InvalidgdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO14invalidRequestyAcA07InvalidgdE0OcACmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
"RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "rateLimitExceeded",
+ "printedName": "rateLimitExceeded",
"children": [
{
- "kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.RateLimitErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.RateLimitErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC9viewModel33_AAA813881AE0A64F5A37E01EE9BE9C36LLAA0cdeH0Ovp",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC9viewModel33_AAA813881AE0A64F5A37E01EE9BE9C36LLAA0cdeH0Ovp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO17rateLimitExceededyAcA04RategdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO17rateLimitExceededyAcA04RategdE0OcACmF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "layoutView",
- "printedName": "layoutView",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIView?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (Swift.String, Swift.String) -> LinkKit.ExitErrorCode",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String, Swift.String) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(type: Swift.String, code: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC06layoutE033_AAA813881AE0A64F5A37E01EE9BE9C36LLSo6UIViewCSgvp",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC06layoutE033_AAA813881AE0A64F5A37E01EE9BE9C36LLSo6UIViewCSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO7unknownyACSS_SStcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO7unknownyACSS_SStcACmF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "hasStorage": true
+ "RawDocComment"
+ ]
},
{
- "kind": "Var",
- "name": "layoutConstraints",
- "printedName": "layoutConstraints",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[UIKit.NSLayoutConstraint]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSLayoutConstraint",
- "printedName": "UIKit.NSLayoutConstraint",
- "usr": "c:objc(cs)NSLayoutConstraint"
- }
- ],
- "usr": "s:Sa"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC17layoutConstraints33_AAA813881AE0A64F5A37E01EE9BE9C36LLSaySo18NSLayoutConstraintCGvp",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC17layoutConstraints33_AAA813881AE0A64F5A37E01EE9BE9C36LLSaySo18NSLayoutConstraintCGvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13ExitErrorCodeO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
- "hasStorage": true
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewController",
- "printedName": "LinkKit.ComponentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO11descriptionSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -1608,233 +1619,114 @@
"usr": "s:SS"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit13ExitErrorCodeO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
+ "AccessControl"
],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "SDKReleaseLoader",
- "printedName": "SDKReleaseLoader",
- "children": [
{
"kind": "Function",
- "name": "loadAvailableSDKVersions",
- "printedName": "loadAvailableSDKVersions(completionHandler:)",
+ "name": "from",
+ "printedName": "from(errorType:errorCode:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<[LinkKit.GithubRelease], Swift.Error>) -> ()",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<[LinkKit.GithubRelease], Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.GithubRelease]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GithubRelease",
- "printedName": "LinkKit.GithubRelease",
- "usr": "s:7LinkKit13GithubReleaseV"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit16SDKReleaseLoaderP24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA13GithubReleaseVGs5Error_pGc_tF",
- "mangledName": "$s7LinkKit16SDKReleaseLoaderP24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA13GithubReleaseVGs5Error_pGc_tF",
+ "usr": "s:7LinkKit13ExitErrorCodeO4from9errorType0gE0ACSgSS_SStFZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO4from9errorType0gE0ACSgSS_SStFZ",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.SDKReleaseLoader>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
+ "static": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
"funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit16SDKReleaseLoaderP",
- "mangledName": "$s7LinkKit16SDKReleaseLoaderP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "GithubSDKReleaseLoader",
- "printedName": "GithubSDKReleaseLoader",
- "children": [
+ },
{
"kind": "TypeDecl",
- "name": "ReleaseLoaderError",
- "printedName": "ReleaseLoaderError",
+ "name": "CodingKeys",
+ "printedName": "CodingKeys",
"children": [
{
"kind": "Var",
- "name": "invalidURL",
- "printedName": "invalidURL",
+ "name": "errorType",
+ "printedName": "errorType",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "printedName": "(LinkKit.ExitErrorCode.CodingKeys.Type) -> LinkKit.ExitErrorCode.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
}
]
}
@@ -1842,37 +1734,37 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO10invalidURLyA2EmF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO10invalidURLyA2EmF",
- "moduleName": "LinkKit",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO9errorTypeyA2EmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO9errorTypeyA2EmF",
+ "moduleName": "LinkKit",
"fixedbinaryorder": 0
},
{
"kind": "Var",
- "name": "missingData",
- "printedName": "missingData",
+ "name": "errorCode",
+ "printedName": "errorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "printedName": "(LinkKit.ExitErrorCode.CodingKeys.Type) -> LinkKit.ExitErrorCode.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
}
]
}
@@ -1880,137 +1772,180 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO11missingDatayA2EmF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO11missingDatayA2EmF",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO05errorE0yA2EmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO05errorE0yA2EmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 1
},
{
- "kind": "Var",
- "name": "api",
- "printedName": "api",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> (Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
- }
- ]
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO3apiyAEs0G0_pcAEmF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO3apiyAEs0G0_pcAEmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueAESgSS_tcfc",
"moduleName": "LinkKit",
- "fixedbinaryorder": 2
+ "implicit": true,
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "decoding",
- "printedName": "decoding",
+ "name": "rawValue",
+ "printedName": "rawValue",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> (Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvp",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvg",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "stringValue",
+ "printedName": "stringValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvp",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvg",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(stringValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO8decodingyAEs0G0_pcAEmF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO8decodingyAEs0G0_pcAEmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueAESgSS_tcfc",
"moduleName": "LinkKit",
- "fixedbinaryorder": 3
+ "implicit": true,
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "errorDescription",
- "printedName": "errorDescription",
+ "name": "intValue",
+ "printedName": "intValue",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Swift.Int?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvp",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvp",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvp",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -2020,46 +1955,127 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Swift.Int?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvg",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvg",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvg",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(intValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueAESgSi_tcfc",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueAESgSi_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "enumRawTypeName": "String",
"isEnumExhaustive": true,
"conformances": [
{
"kind": "Conformance",
- "name": "LocalizedError",
- "printedName": "LocalizedError",
- "usr": "s:10Foundation14LocalizedErrorP",
- "mangledName": "$s10Foundation14LocalizedErrorP"
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
"kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CodingKey",
+ "printedName": "CodingKey",
+ "usr": "s:s9CodingKeyP",
+ "mangledName": "$ss9CodingKeyP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
{
"kind": "Conformance",
@@ -2071,238 +2087,159 @@
]
},
{
- "kind": "Function",
- "name": "loadAvailableSDKVersions",
- "printedName": "loadAvailableSDKVersions(completionHandler:)",
+ "kind": "Var",
+ "name": "invalidRequestString",
+ "printedName": "invalidRequestString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO20invalidRequestStringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO20invalidRequestStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<[LinkKit.GithubRelease], Swift.Error>) -> ()",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<[LinkKit.GithubRelease], Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.GithubRelease]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GithubRelease",
- "printedName": "LinkKit.GithubRelease",
- "usr": "s:7LinkKit13GithubReleaseV"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO20invalidRequestStringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO20invalidRequestStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA0C7ReleaseVGs5Error_pGc_tF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA0C7ReleaseVGs5Error_pGc_tF",
- "moduleName": "LinkKit",
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
+ "kind": "Var",
+ "name": "invalidInputString",
+ "printedName": "invalidInputString",
"children": [
{
"kind": "TypeNominal",
- "name": "GithubSDKReleaseLoader",
- "printedName": "LinkKit.GithubSDKReleaseLoader",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderVACycfc",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderVACycfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO18invalidInputStringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO18invalidInputStringSSvpZ",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV",
- "moduleName": "LinkKit",
- "conformances": [
- {
- "kind": "Conformance",
- "name": "SDKReleaseLoader",
- "printedName": "SDKReleaseLoader",
- "usr": "s:7LinkKit16SDKReleaseLoaderP",
- "mangledName": "$s7LinkKit16SDKReleaseLoaderP"
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO18invalidInputStringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO18invalidInputStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "LinkHandlerAction",
- "printedName": "LinkHandlerAction",
- "children": [
- {
- "kind": "Function",
- "name": "composeMail",
- "printedName": "composeMail(to:using:)",
+ "kind": "Var",
+ "name": "institutionErrorString",
+ "printedName": "institutionErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A13HandlerActionV11composeMail2to5usingy10Foundation3URLV_So16UIViewControllerCtFZ",
- "mangledName": "$s7LinkKit0A13HandlerActionV11composeMail2to5usingy10Foundation3URLV_So16UIViewControllerCtFZ",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO011institutionD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD6StringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkHandlerAction",
- "printedName": "LinkKit.LinkHandlerAction",
- "usr": "s:7LinkKit0A13HandlerActionV"
- }
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A13HandlerActionVACycfc",
- "mangledName": "$s7LinkKit0A13HandlerActionVACycfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit0A13HandlerActionV",
- "mangledName": "$s7LinkKit0A13HandlerActionV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "SemanticVersion",
- "printedName": "SemanticVersion",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(versionString:)",
- "children": [
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.SemanticVersion?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO011institutionD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD6StringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit15SemanticVersionV13versionStringACSgSS_tcfc",
- "mangledName": "$s7LinkKit15SemanticVersionV13versionStringACSgSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
"kind": "Var",
- "name": "versionString",
- "printedName": "versionString",
+ "name": "rateLimitExceededString",
+ "printedName": "rateLimitExceededString",
"children": [
{
"kind": "TypeNominal",
@@ -2312,15 +2249,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV13versionStringSSvp",
- "mangledName": "$s7LinkKit15SemanticVersionV13versionStringSSvp",
+ "usr": "s:7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 0,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -2337,9 +2274,10 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV13versionStringSSvg",
- "mangledName": "$s7LinkKit15SemanticVersionV13versionStringSSvg",
+ "usr": "s:7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
"declAttributes": [
"Transparent"
@@ -2350,8 +2288,8 @@
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "apiErrorString",
+ "printedName": "apiErrorString",
"children": [
{
"kind": "TypeNominal",
@@ -2361,12 +2299,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV11descriptionSSvp",
- "mangledName": "$s7LinkKit15SemanticVersionV11descriptionSSvp",
+ "usr": "s:7LinkKit13ExitErrorCodeO03apiD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -2381,33 +2324,42 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV11descriptionSSvg",
- "mangledName": "$s7LinkKit15SemanticVersionV11descriptionSSvg",
+ "usr": "s:7LinkKit13ExitErrorCodeO03apiD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "major",
- "printedName": "major",
+ "name": "itemErrorString",
+ "printedName": "itemErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV5majorSivp",
- "mangledName": "$s7LinkKit15SemanticVersionV5majorSivp",
+ "usr": "s:7LinkKit13ExitErrorCodeO04itemD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -2416,39 +2368,48 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV5majorSivg",
- "mangledName": "$s7LinkKit15SemanticVersionV5majorSivg",
+ "usr": "s:7LinkKit13ExitErrorCodeO04itemD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "minor",
- "printedName": "minor",
+ "name": "authErrorString",
+ "printedName": "authErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV5minorSivp",
- "mangledName": "$s7LinkKit15SemanticVersionV5minorSivp",
+ "usr": "s:7LinkKit13ExitErrorCodeO04authD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04authD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -2457,39 +2418,48 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV5minorSivg",
- "mangledName": "$s7LinkKit15SemanticVersionV5minorSivg",
+ "usr": "s:7LinkKit13ExitErrorCodeO04authD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04authD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "patch",
- "printedName": "patch",
+ "name": "assetReportErrorString",
+ "printedName": "assetReportErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV5patchSivp",
- "mangledName": "$s7LinkKit15SemanticVersionV5patchSivp",
+ "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -2498,125 +2468,78 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV5patchSivg",
- "mangledName": "$s7LinkKit15SemanticVersionV5patchSivg",
+ "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "components",
- "printedName": "components",
+ "name": "internalString",
+ "printedName": "internalString",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sa"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV10components33_5723E2495FAE01EBDD8BE3861CED1ED5LLSaySiGvp",
- "mangledName": "$s7LinkKit15SemanticVersionV10components33_5723E2495FAE01EBDD8BE3861CED1ED5LLSaySiGvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
- },
- {
- "kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SemanticVersionV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit15SemanticVersionV2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit13ExitErrorCodeO14internalStringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO14internalStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "<",
- "printedName": "<(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
- },
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO14internalStringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO14internalStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SemanticVersionV1loiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit15SemanticVersionV1loiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Function",
- "name": ">",
- "printedName": ">(_:_:)",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
@@ -2626,63 +2549,55 @@
},
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit15SemanticVersionV1goiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit15SemanticVersionV1goiySbAC_ACtFZ",
+ "usr": "s:7LinkKit13ExitErrorCodeO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
- "declAttributes": [
- "AccessControl"
- ],
+ "isFromExtension": true,
"funcSelfKind": "NonMutating"
}
],
- "declKind": "Struct",
- "usr": "s:7LinkKit15SemanticVersionV",
- "mangledName": "$s7LinkKit15SemanticVersionV",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit13ExitErrorCodeO",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
@@ -2695,1382 +2610,695 @@
},
{
"kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
+ "name": "Foundation",
+ "printedName": "Foundation",
"declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
+ "moduleName": "LinkKit"
},
{
"kind": "TypeDecl",
- "name": "EmbeddedSearchModuleView",
- "printedName": "EmbeddedSearchModuleView",
+ "name": "LinkSuccess",
+ "printedName": "LinkSuccess",
"children": [
{
- "kind": "TypeDecl",
- "name": "Style",
- "printedName": "Style",
+ "kind": "Var",
+ "name": "publicToken",
+ "printedName": "publicToken",
"children": [
{
- "kind": "Var",
- "name": "primary",
- "printedName": "primary",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO7primaryyA2EmF",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO7primaryyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvp",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "Var",
- "name": "secondary",
- "printedName": "secondary",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9secondaryyA2EmF",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9secondaryyA2EmF",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvg",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvg",
"moduleName": "LinkKit",
- "fixedbinaryorder": 1
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "Var",
- "name": "tertiary",
- "printedName": "tertiary",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8tertiaryyA2EmF",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8tertiaryyA2EmF",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvs",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvs",
"moduleName": "LinkKit",
- "fixedbinaryorder": 2
+ "implicit": true,
+ "accessorKind": "set"
},
{
- "kind": "Var",
- "name": "textKind",
- "printedName": "textKind",
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "TextKind",
- "printedName": "Threads.TextKind",
- "usr": "s:7Threads8TextKindO"
+ "name": "Void",
+ "printedName": "()"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovp",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvM",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvM",
"moduleName": "LinkKit",
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TextKind",
- "printedName": "Threads.TextKind",
- "usr": "s:7Threads8TextKindO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovg",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "metadata",
+ "printedName": "metadata",
+ "children": [
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "kind": "TypeNominal",
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvp",
+ "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO2eeoiySbAE_AEtFZ",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO2eeoiySbAE_AEtFZ",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvg",
+ "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "funcSelfKind": "NonMutating"
+ "accessorKind": "get"
},
{
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivp",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvs",
+ "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvs",
"moduleName": "LinkKit",
"implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivg",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
+ "accessorKind": "set"
},
{
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
"name": "Void",
"printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO4hash4intoys6HasherVz_tF",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvM",
+ "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvM",
"moduleName": "LinkKit",
"implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "accessorKind": "_modify"
}
]
},
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(viewModel:style:)",
+ "printedName": "init(publicToken:metadata:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchModuleView",
- "printedName": "LinkKit.EmbeddedSearchModuleView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView"
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
},
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchModuleViewModel",
- "printedName": "Workflow.EmbeddedSearchModuleViewModel",
- "usr": "s:8Workflow29EmbeddedSearchModuleViewModelC"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
},
{
"kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC9viewModel5styleAC8Workflow0cdefH0C_AC5StyleOtcfc",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC9viewModel5styleAC8Workflow0cdefH0C_AC5StyleOtcfc",
+ "usr": "s:7LinkKit0A7SuccessV11publicToken8metadataACSS_AA0C8MetadataVtcfc",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicToken8metadataACSS_AA0C8MetadataVtcfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "AccessControl"
- ],
+ "implicit": true,
"init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchModuleViewModel",
- "printedName": "Workflow.EmbeddedSearchModuleViewModel",
- "usr": "s:8Workflow29EmbeddedSearchModuleViewModelC"
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC9viewModel33_8B1E8952538FE6432CBE3AC02A54F6CBLL8Workflow0cdefH0Cvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC9viewModel33_8B1E8952538FE6432CBE3AC02A54F6CBLL8Workflow0cdefH0Cvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A7SuccessV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit0A7SuccessV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "style",
- "printedName": "style",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5style33_8B1E8952538FE6432CBE3AC02A54F6CBLLAC5StyleOvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5style33_8B1E8952538FE6432CBE3AC02A54F6CBLLAC5StyleOvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7SuccessV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit0A7SuccessV6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "hStack",
- "printedName": "hStack",
+ "kind": "Function",
+ "name": "from",
+ "printedName": "from(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "UIStackView",
- "printedName": "UIKit.UIStackView",
- "usr": "c:objc(cs)UIStackView"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC6hStack33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo07UIStackF0Cvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC6hStack33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo07UIStackF0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "tapGesture",
- "printedName": "tapGesture",
- "children": [
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
+ },
{
"kind": "TypeNominal",
- "name": "UITapGestureRecognizer",
- "printedName": "UIKit.UITapGestureRecognizer",
- "usr": "c:objc(cs)UITapGestureRecognizer"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC10tapGesture33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo05UITapH10RecognizerCvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC10tapGesture33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo05UITapH10RecognizerCvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 3,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "$__lazy_storage_$_leadingAsset",
- "printedName": "$__lazy_storage_$_leadingAsset",
- "children": [
+ "name": "Link_Workflow_Primitives_SDKResult",
+ "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult",
+ "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV"
+ },
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Threads.RenderedAsset?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "RenderedAsset",
- "printedName": "Threads.RenderedAsset",
- "usr": "c:@M@Threads@objc(cs)RenderedAsset"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC30$__lazy_storage_$_leadingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC30$__lazy_storage_$_leadingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7SuccessV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgtFZ",
+ "mangledName": "$s7LinkKit0A7SuccessV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgtFZ",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
- ],
- "fixedbinaryorder": 4,
- "hasStorage": true
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "$__lazy_storage_$_text",
- "printedName": "$__lazy_storage_$_text",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UILabel?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UILabel",
- "printedName": "UIKit.UILabel",
- "usr": "c:objc(cs)UILabel"
- }
- ],
- "usr": "s:Sq"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC22$__lazy_storage_$_text33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC22$__lazy_storage_$_text33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7SuccessV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit0A7SuccessV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
- ],
- "fixedbinaryorder": 5,
- "hasStorage": true
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "$__lazy_storage_$_secondaryText",
- "printedName": "$__lazy_storage_$_secondaryText",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UILabel?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UILabel",
- "printedName": "UIKit.UILabel",
- "usr": "c:objc(cs)UILabel"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKLinkSuccess",
+ "printedName": "LinkKit.PLKLinkSuccess",
+ "usr": "c:objc(cs)PLKLinkSuccess"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_secondaryText33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_secondaryText33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "usr": "s:7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvp",
+ "mangledName": "$s7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvp",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
+ "AccessControl"
],
- "fixedbinaryorder": 6,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "$__lazy_storage_$_trailingAsset",
- "printedName": "$__lazy_storage_$_trailingAsset",
- "children": [
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Threads.RenderedAsset?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "RenderedAsset",
- "printedName": "Threads.RenderedAsset",
- "usr": "c:@M@Threads@objc(cs)RenderedAsset"
+ "name": "PLKLinkSuccess",
+ "printedName": "LinkKit.PLKLinkSuccess",
+ "usr": "c:objc(cs)PLKLinkSuccess"
}
],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_trailingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_trailingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
- ],
- "fixedbinaryorder": 7,
- "hasStorage": true
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(frame:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchModuleView",
- "printedName": "LinkKit.EmbeddedSearchModuleView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView"
- },
- {
- "kind": "TypeNominal",
- "name": "CGRect",
- "printedName": "CoreGraphics.CGRect",
- "usr": "c:@S@CGRect"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvg",
+ "mangledName": "$s7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView(im)initWithFrame:",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5frameACSo6CGRectV_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithFrame:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
+ ]
}
],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit0A7SuccessV",
+ "mangledName": "$s7LinkKit0A7SuccessV",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
"AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "LayoutArea",
- "printedName": "LayoutArea",
- "usr": "s:9AppCoreUI10LayoutAreaP",
- "mangledName": "$s9AppCoreUI10LayoutAreaP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
{
"kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "SafariServices",
- "printedName": "SafariServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
+ "name": "Foundation",
+ "printedName": "Foundation",
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "ComponentPaneRenderable",
- "printedName": "ComponentPaneRenderable",
+ "name": "EventName",
+ "printedName": "EventName",
"children": [
{
- "kind": "Function",
- "name": "renderComponentPane",
- "printedName": "renderComponentPane()",
+ "kind": "Var",
+ "name": "bankIncomeInsightsCompleted",
+ "printedName": "bankIncomeInsightsCompleted",
"children": [
{
- "kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit23ComponentPaneRenderableP06rendercD0AA0cD9ViewModelOyF",
- "mangledName": "$s7LinkKit23ComponentPaneRenderableP06rendercD0AA0cD9ViewModelOyF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO27bankIncomeInsightsCompletedyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO27bankIncomeInsightsCompletedyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.ComponentPaneRenderable>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit23ComponentPaneRenderableP",
- "mangledName": "$s7LinkKit23ComponentPaneRenderableP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PaneFactory",
- "printedName": "PaneFactory",
- "children": [
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
{
"kind": "Var",
- "name": "log",
- "printedName": "log",
+ "name": "closeOAuth",
+ "printedName": "closeOAuth",
"children": [
{
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit11PaneFactoryV3log3LogAEVvp",
- "mangledName": "$s7LinkKit11PaneFactoryV3log3LogAEVvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO10closeOAuthyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO10closeOAuthyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "error",
+ "printedName": "error",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit11PaneFactoryV3log3LogAEVvg",
- "mangledName": "$s7LinkKit11PaneFactoryV3log3LogAEVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "paneViewController",
- "printedName": "paneViewController(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "PaneViewModel",
- "printedName": "Workflow.PaneViewModel",
- "usr": "s:8Workflow13PaneViewModelO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11PaneFactoryV18paneViewController4withSo06UIViewG0C8Workflow0cF5ModelO_tF",
- "mangledName": "$s7LinkKit11PaneFactoryV18paneViewController4withSo06UIViewG0C8Workflow0cF5ModelO_tF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(log:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PaneFactory",
- "printedName": "LinkKit.PaneFactory",
- "usr": "s:7LinkKit11PaneFactoryV"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit11PaneFactoryV3logAC3LogAEV_tcfc",
- "mangledName": "$s7LinkKit11PaneFactoryV3logAC3LogAEV_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit11PaneFactoryV",
- "mangledName": "$s7LinkKit11PaneFactoryV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Anomalies",
- "printedName": "Anomalies",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "Plaid",
- "printedName": "Plaid",
- "children": [
- {
- "kind": "TypeDecl",
- "name": "CreateError",
- "printedName": "CreateError",
- "children": [
- {
- "kind": "Var",
- "name": "configurationError",
- "printedName": "configurationError",
- "children": [
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Plaid.CreateError.Type) -> (LinkKit.ConfigurationError) -> LinkKit.Plaid.CreateError",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ConfigurationError) -> LinkKit.Plaid.CreateError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CreateError",
- "printedName": "LinkKit.Plaid.CreateError",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Plaid.CreateError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CreateError",
- "printedName": "LinkKit.Plaid.CreateError",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO013configurationE0yAeA013ConfigurationE0OcAEmF",
- "mangledName": "$s7LinkKit5PlaidV11CreateErrorO013configurationE0yAeA013ConfigurationE0OcAEmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO5erroryA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO5erroryA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "exit",
+ "printedName": "exit",
+ "children": [
{
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvp",
- "mangledName": "$s7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvg",
- "mangledName": "$s7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO",
- "mangledName": "$s7LinkKit5PlaidV11CreateErrorO",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO4exityA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO4exityA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
+ "RawDocComment"
]
},
{
- "kind": "Function",
- "name": "create",
- "printedName": "create(_:)",
+ "kind": "Var",
+ "name": "failOAuth",
+ "printedName": "failOAuth",
"children": [
{
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "CreateError",
- "printedName": "LinkKit.Plaid.CreateError",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:s6ResultO"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A22PublicKeyConfigurationVFZ",
- "mangledName": "$s7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A22PublicKeyConfigurationVFZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO9failOAuthyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO9failOAuthyA2CmF",
"moduleName": "LinkKit",
- "static": true,
- "deprecated": true,
"declAttributes": [
- "AccessControl",
- "Available",
"RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "create",
- "printedName": "create(_:)",
+ "kind": "Var",
+ "name": "handoff",
+ "printedName": "handoff",
"children": [
{
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "CreateError",
- "printedName": "LinkKit.Plaid.CreateError",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:s6ResultO"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A18TokenConfigurationVFZ",
- "mangledName": "$s7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A18TokenConfigurationVFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "version",
- "printedName": "version",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit5PlaidV7versionSSvpZ",
- "mangledName": "$s7LinkKit5PlaidV7versionSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO7handoffyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO7handoffyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit5PlaidV7versionSSvgZ",
- "mangledName": "$s7LinkKit5PlaidV7versionSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "accessorKind": "get"
- }
]
},
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Plaid",
- "printedName": "LinkKit.Plaid",
- "usr": "s:7LinkKit5PlaidV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit5PlaidVACycfc",
- "mangledName": "$s7LinkKit5PlaidVACycfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit5PlaidV",
- "mangledName": "$s7LinkKit5PlaidV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "HandlerContinueError",
- "printedName": "HandlerContinueError",
- "children": [
{
"kind": "Var",
- "name": "invalidRedirect",
- "printedName": "invalidRedirect",
+ "name": "identityVerificationStartStep",
+ "printedName": "identityVerificationStartStep",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.HandlerContinueError.Type) -> (Swift.String) -> LinkKit.HandlerContinueError",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.HandlerContinueError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.HandlerContinueError.Type",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
@@ -4078,36 +3306,39 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20HandlerContinueErrorO15invalidRedirectyACSScACmF",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO15invalidRedirectyACSScACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit9EventNameO29identityVerificationStartStepyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO29identityVerificationStartStepyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "internal",
- "printedName": "internal",
+ "name": "identityVerificationPassStep",
+ "printedName": "identityVerificationPassStep",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.HandlerContinueError.Type) -> LinkKit.HandlerContinueError",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.HandlerContinueError.Type",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
@@ -4115,1600 +3346,1540 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20HandlerContinueErrorO8internalyA2CmF",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO8internalyA2CmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit9EventNameO28identityVerificationPassStepyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO28identityVerificationPassStepyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "identityVerificationFailStep",
+ "printedName": "identityVerificationFailStep",
"children": [
{
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20HandlerContinueErrorO6toObjCSo7NSErrorCvp",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO6toObjCSo7NSErrorCvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20HandlerContinueErrorO6toObjCSo7NSErrorCvg",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO6toObjCSo7NSErrorCvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO28identityVerificationFailStepyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO28identityVerificationFailStepyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit20HandlerContinueErrorO",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
},
{
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Handler",
- "printedName": "Handler",
- "children": [
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentUsing:)",
+ "kind": "Var",
+ "name": "identityVerificationPendingReviewStep",
+ "printedName": "identityVerificationPendingReviewStep",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP4open12presentUsingyAA18PresentationMethodO_tF",
- "mangledName": "$s7LinkKit7HandlerP4open12presentUsingyAA18PresentationMethodO_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO37identityVerificationPendingReviewStepyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO37identityVerificationPendingReviewStepyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "protocolReq": true,
"declAttributes": [
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentUsing:_:)",
+ "kind": "Var",
+ "name": "identityVerificationCreateSession",
+ "printedName": "identityVerificationCreateSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:SD"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP4open12presentUsing_yAA18PresentationMethodO_SDyS2SGtF",
- "mangledName": "$s7LinkKit7HandlerP4open12presentUsing_yAA18PresentationMethodO_SDyS2SGtF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO33identityVerificationCreateSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO33identityVerificationCreateSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
"declAttributes": [
- "Available",
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "createEmbeddedView",
- "printedName": "createEmbeddedView(presentUsing:)",
+ "kind": "Var",
+ "name": "identityVerificationResumeSession",
+ "printedName": "identityVerificationResumeSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:s6ResultO"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP18createEmbeddedView12presentUsings6ResultOySo6UIViewCAA18ConfigurationErrorOGAA18PresentationMethodO_tF",
- "mangledName": "$s7LinkKit7HandlerP18createEmbeddedView12presentUsings6ResultOySo6UIViewCAA18ConfigurationErrorOGAA18PresentationMethodO_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO33identityVerificationResumeSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO33identityVerificationResumeSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "protocolReq": true,
"declAttributes": [
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "continueFrom",
- "printedName": "continueFrom(redirectUri:)",
+ "kind": "Var",
+ "name": "identityVerificationPassSession",
+ "printedName": "identityVerificationPassSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.HandlerContinueError?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP12continueFrom11redirectUriAA0C13ContinueErrorOSg10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit7HandlerP12continueFrom11redirectUriAA0C13ContinueErrorOSg10Foundation3URLV_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO31identityVerificationPassSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO31identityVerificationPassSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
"declAttributes": [
- "Available",
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "continue",
- "printedName": "continue(from:)",
+ "kind": "Var",
+ "name": "identityVerificationFailSession",
+ "printedName": "identityVerificationFailSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP8continue4fromy10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit7HandlerP8continue4fromy10Foundation3URLV_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO31identityVerificationFailSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO31identityVerificationFailSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
"declAttributes": [
- "Available",
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "resumeAfterTermination",
- "printedName": "resumeAfterTermination(from:)",
+ "kind": "Var",
+ "name": "identityVerificationPendingReviewSession",
+ "printedName": "identityVerificationPendingReviewSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP22resumeAfterTermination4fromy10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit7HandlerP22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO40identityVerificationPendingReviewSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO40identityVerificationPendingReviewSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "protocolReq": true,
"declAttributes": [
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit7HandlerP",
- "mangledName": "$s7LinkKit7HandlerP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkTokenConfiguration",
- "children": [
+ ]
+ },
{
"kind": "Var",
- "name": "token",
- "printedName": "token",
+ "name": "identityVerificationOpenUI",
+ "printedName": "identityVerificationOpenUI",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV5tokenSSvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV5tokenSSvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO26identityVerificationOpenUIyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO26identityVerificationOpenUIyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "identityVerificationResumeUI",
+ "printedName": "identityVerificationResumeUI",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV5tokenSSvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV5tokenSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO28identityVerificationResumeUIyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO28identityVerificationResumeUIyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "onSuccess",
- "printedName": "onSuccess",
+ "name": "identityVerificationCloseUI",
+ "printedName": "identityVerificationCloseUI",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO27identityVerificationCloseUIyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO27identityVerificationCloseUIyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "matchedSelectInstitution",
+ "printedName": "matchedSelectInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO24matchedSelectInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO24matchedSelectInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "matchedSelectVerifyMethod",
+ "printedName": "matchedSelectVerifyMethod",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvs",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0VcvM",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO25matchedSelectVerifyMethodyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO25matchedSelectVerifyMethodyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "onExit",
- "printedName": "onExit",
+ "name": "open",
+ "printedName": "open",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO4openyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO4openyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "openMyPlaid",
+ "printedName": "openMyPlaid",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO11openMyPlaidyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO11openMyPlaidyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "openOAuth",
+ "printedName": "openOAuth",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvs",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0VcvM",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO9openOAuthyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO9openOAuthyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "onEvent",
- "printedName": "onEvent",
+ "name": "searchInstitution",
+ "printedName": "searchInstitution",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO17searchInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO17searchInstitutionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selectDegradedInstitution",
+ "printedName": "selectDegradedInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO25selectDegradedInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO25selectDegradedInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selectFilteredInstitution",
+ "printedName": "selectFilteredInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvs",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO25selectFilteredInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO25selectFilteredInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selectDownInstitution",
+ "printedName": "selectDownInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0VcvM",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO21selectDownInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO21selectDownInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "noLoadingState",
- "printedName": "noLoadingState",
+ "name": "selectInstitution",
+ "printedName": "selectInstitution",
"children": [
{
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO17selectInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO17selectInstitutionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selectBrand",
+ "printedName": "selectBrand",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvs",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvM",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO11selectBrandyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO11selectBrandyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(token:onSuccess:)",
+ "kind": "Var",
+ "name": "selectAuthType",
+ "printedName": "selectAuthType",
"children": [
- {
- "kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A18TokenConfigurationV5token9onSuccessACSS_yAA0aG0Vctcfc",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV5token9onSuccessACSS_yAA0aG0Vctcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO14selectAuthTypeyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO14selectAuthTypeyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Function",
- "name": "environment",
- "printedName": "environment(_:)",
+ "kind": "Var",
+ "name": "submitAccountNumber",
+ "printedName": "submitAccountNumber",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.Environment?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A18TokenConfigurationV11environmentyAA11EnvironmentOSg3LogAHVF",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV11environmentyAA11EnvironmentOSg3LogAHVF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO19submitAccountNumberyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO19submitAccountNumberyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "loadSessionConfiguration",
- "printedName": "loadSessionConfiguration(_:_:_:_:_:)",
+ "kind": "Var",
+ "name": "submitDocuments",
+ "printedName": "submitDocuments",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "OneOf_Configuration",
- "printedName": "WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration",
- "usr": "s:13WorkflowProto09Link_Api_cA12StartRequestV19OneOf_ConfigurationO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A18TokenConfigurationV011loadSessionD0yySS_S2S3LogAEVy13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_D0OctF",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV011loadSessionD0yySS_S2S3LogAEVy13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_D0OctF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO15submitDocumentsyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO15submitDocumentsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit0A18TokenConfigurationV",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "OAuthNonceConfiguration",
- "printedName": "OAuthNonceConfiguration",
- "children": [
+ ]
+ },
{
"kind": "Var",
- "name": "nonce",
- "printedName": "nonce",
+ "name": "submitDocumentsSuccess",
+ "printedName": "submitDocumentsSuccess",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV5nonceSSvp",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV5nonceSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV5nonceSSvg",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV5nonceSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO22submitDocumentsSuccessyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO22submitDocumentsSuccessyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "redirectUri",
- "printedName": "redirectUri",
+ "name": "submitDocumentsError",
+ "printedName": "submitDocumentsError",
"children": [
{
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV11redirectUri10Foundation3URLVvp",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV11redirectUri10Foundation3URLVvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV11redirectUri10Foundation3URLVvg",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV11redirectUri10Foundation3URLVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nonce:redirectUri:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV5nonce11redirectUriACSS_10Foundation3URLVtcfc",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV5nonce11redirectUriACSS_10Foundation3URLVtcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO20submitDocumentsErroryA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO20submitDocumentsErroryA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
"kind": "Var",
- "name": "oauthStateID",
- "printedName": "oauthStateID",
+ "name": "submitRoutingNumber",
+ "printedName": "submitRoutingNumber",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV12oauthStateIDSSSgvp",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV12oauthStateIDSSSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO19submitRoutingNumberyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO19submitRoutingNumberyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "submitCredentials",
+ "printedName": "submitCredentials",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV12oauthStateIDSSSgvg",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV12oauthStateIDSSSgvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO17submitCredentialsyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO17submitCredentialsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkPublicKeyConfiguration",
- "children": [
+ },
{
- "kind": "TypeDecl",
- "name": "Token",
- "printedName": "Token",
+ "kind": "Var",
+ "name": "submitMFA",
+ "printedName": "submitMFA",
"children": [
{
- "kind": "Var",
- "name": "payment",
- "printedName": "payment",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token.Type) -> (Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO7paymentyAESS_SStcAEmF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO7paymentyAESS_SStcAEmF",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "Available"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO9submitMFAyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO9submitMFAyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "transitionView",
+ "printedName": "transitionView",
+ "children": [
{
- "kind": "Var",
- "name": "depositSwitchToken",
- "printedName": "depositSwitchToken",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token.Type) -> (Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO013depositSwitchF0yAESS_SStcAEmF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO013depositSwitchF0yAESS_SStcAEmF",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "Available"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO14transitionViewyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO14transitionViewyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "viewDataTypes",
+ "printedName": "viewDataTypes",
+ "children": [
{
- "kind": "Var",
- "name": "publicKey",
- "printedName": "publicKey",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token.Type) -> (Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO06publicD0yAESScAEmF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO06publicD0yAESScAEmF",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "Available"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO13viewDataTypesyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO13viewDataTypesyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "submitPhone",
+ "printedName": "submitPhone",
+ "children": [
{
- "kind": "Var",
- "name": "publicToken",
- "printedName": "publicToken",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token.Type) -> (Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO06publicF0yAESS_SStcAEmF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO06publicF0yAESS_SStcAEmF",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "Available"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO11submitPhoneyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO11submitPhoneyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "skipSubmitPhone",
+ "printedName": "skipSubmitPhone",
+ "children": [
{
- "kind": "Var",
- "name": "associatedValue",
- "printedName": "associatedValue",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO15associatedValueSSvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO15associatedValueSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO15associatedValueSSvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO15associatedValueSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO15skipSubmitPhoneyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO15skipSubmitPhoneyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "clientName",
- "printedName": "clientName",
+ "name": "verifyPhone",
+ "printedName": "verifyPhone",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientNameSSvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientNameSSvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO11verifyPhoneyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO11verifyPhoneyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientNameSSvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientNameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "connectNewInstitution",
+ "printedName": "connectNewInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientNameSSvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientNameSSvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO21connectNewInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO21connectNewInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> (Swift.String) -> LinkKit.EventName",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientNameSSvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientNameSSvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit9EventNameO7unknownyACSScACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9EventNameO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit9EventNameO4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9EventNameO8rawValueACSS_tcfc",
+ "mangledName": "$s7LinkKit9EventNameO8rawValueACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
{
"kind": "Var",
- "name": "environment",
- "printedName": "environment",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvp",
+ "usr": "s:7LinkKit9EventNameO11descriptionSSvp",
+ "mangledName": "$s7LinkKit9EventNameO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -5717,194 +4888,95 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvM",
+ "usr": "s:7LinkKit9EventNameO11descriptionSSvg",
+ "mangledName": "$s7LinkKit9EventNameO11descriptionSSvg",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
- "kind": "Var",
- "name": "products",
- "printedName": "products",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Set",
- "printedName": "Swift.Set",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sh"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9EventNameO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit9EventNameO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "hasStorage": true,
- "accessors": [
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Set",
- "printedName": "Swift.Set",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sh"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Set",
- "printedName": "Swift.Set",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sh"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit9EventNameO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit9EventNameO2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "language",
- "printedName": "language",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKEventName",
+ "printedName": "LinkKit.PLKEventName",
+ "usr": "c:objc(cs)PLKEventName"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8languageSSvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8languageSSvp",
+ "usr": "s:7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvp",
+ "mangledName": "$s7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -5913,533 +4985,474 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKEventName",
+ "printedName": "LinkKit.PLKEventName",
+ "usr": "c:objc(cs)PLKEventName"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8languageSSvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8languageSSvg",
+ "usr": "s:7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvg",
+ "mangledName": "$s7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvg",
"moduleName": "LinkKit",
- "implicit": true,
+ "isFromExtension": true,
"accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8languageSSvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8languageSSvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8languageSSvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8languageSSvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit9EventNameO",
+ "mangledName": "$s7LinkKit9EventNameO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
{
- "kind": "Var",
- "name": "countryCodes",
- "printedName": "countryCodes",
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PlaidLinkViewController",
+ "printedName": "PlaidLinkViewController",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(log:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
+ "name": "PlaidLinkViewController",
+ "printedName": "LinkKit.PlaidLinkViewController",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "hasDefaultArg": true,
+ "usr": "s:3LogAAV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit05PlaidA14ViewControllerC3logAC3LogAEV_tcfc",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC3logAC3LogAEV_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
+ "Custom",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PlaidLinkViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
+ "name": "PlaidLinkViewController",
+ "printedName": "LinkKit.PlaidLinkViewController",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "token",
- "printedName": "token",
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
"children": [
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
+ "name": "Void",
+ "printedName": "()"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvp",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC11viewDidLoadyyF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
"declAttributes": [
- "HasStorage",
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "transitionTo",
+ "printedName": "transitionTo(pane:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit05PlaidA14ViewControllerC12transitionTo4paneySo06UIViewE0C_tF",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC12transitionTo4paneySo06UIViewE0C_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "onSuccess",
- "printedName": "onSuccess",
+ "name": "log",
+ "printedName": "log",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvp",
+ "usr": "s:7LinkKit05PlaidA14ViewControllerC3log33_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LL3LogAFVvp",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC3log33_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LL3LogAFVvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "Final",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0VcvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "onExit",
- "printedName": "onExit",
+ "name": "$__lazy_storage_$_presentedPaneViewController",
+ "printedName": "$__lazy_storage_$_presentedPaneViewController",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "UIKit.UIViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvp",
+ "usr": "s:7LinkKit05PlaidA14ViewControllerC031$__lazy_storage_$_presentedPanedE033_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LLSo06UIViewE0CSgvp",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC031$__lazy_storage_$_presentedPanedE033_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LLSo06UIViewE0CSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final"
],
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 1,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "PlaidLinkViewController",
+ "printedName": "LinkKit.PlaidLinkViewController",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0VcvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Institution",
+ "printedName": "Institution",
+ "children": [
{
"kind": "Var",
- "name": "onEvent",
- "printedName": "onEvent",
+ "name": "id",
+ "printedName": "id",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvp",
+ "usr": "s:7LinkKit11InstitutionV2idSSvp",
+ "mangledName": "$s7LinkKit11InstitutionV2idSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -6452,27 +5465,15 @@
"printedName": "Get()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvg",
+ "usr": "s:7LinkKit11InstitutionV2idSSvg",
+ "mangledName": "$s7LinkKit11InstitutionV2idSSvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -6488,27 +5489,15 @@
"printedName": "()"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvs",
+ "usr": "s:7LinkKit11InstitutionV2idSSvs",
+ "mangledName": "$s7LinkKit11InstitutionV2idSSvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -6525,8 +5514,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0VcvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0VcvM",
+ "usr": "s:7LinkKit11InstitutionV2idSSvM",
+ "mangledName": "$s7LinkKit11InstitutionV2idSSvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -6535,30 +5524,21 @@
},
{
"kind": "Var",
- "name": "webhook",
- "printedName": "webhook",
+ "name": "name",
+ "printedName": "name",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvp",
+ "usr": "s:7LinkKit11InstitutionV4nameSSvp",
+ "mangledName": "$s7LinkKit11InstitutionV4nameSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -6572,22 +5552,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvg",
+ "usr": "s:7LinkKit11InstitutionV4nameSSvg",
+ "mangledName": "$s7LinkKit11InstitutionV4nameSSvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -6604,22 +5576,14 @@
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvs",
+ "usr": "s:7LinkKit11InstitutionV4nameSSvs",
+ "mangledName": "$s7LinkKit11InstitutionV4nameSSvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -6636,8 +5600,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvM",
+ "usr": "s:7LinkKit11InstitutionV4nameSSvM",
+ "mangledName": "$s7LinkKit11InstitutionV4nameSSvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -6645,147 +5609,136 @@
]
},
{
- "kind": "Var",
- "name": "userLegalName",
- "printedName": "userLegalName",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(id:name:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit11InstitutionV2id4nameACSS_SStcfc",
+ "mangledName": "$s7LinkKit11InstitutionV2id4nameACSS_SStcfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
],
- "hasStorage": true,
- "accessors": [
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit11InstitutionV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit11InstitutionV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit11InstitutionV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit11InstitutionV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit11InstitutionV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit11InstitutionV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "userEmailAddress",
- "printedName": "userEmailAddress",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKInstitution",
+ "printedName": "LinkKit.PLKInstitution",
+ "usr": "c:objc(cs)PLKInstitution"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvp",
+ "usr": "s:7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvp",
+ "mangledName": "$s7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -6794,220 +5747,423 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKInstitution",
+ "printedName": "LinkKit.PLKInstitution",
+ "usr": "c:objc(cs)PLKInstitution"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvg",
+ "usr": "s:7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvg",
+ "mangledName": "$s7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvg",
"moduleName": "LinkKit",
- "implicit": true,
+ "isFromExtension": true,
"accessorKind": "get"
- },
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit11InstitutionV",
+ "mangledName": "$s7LinkKit11InstitutionV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ConfigurationError",
+ "printedName": "ConfigurationError",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "malformedClientID",
+ "printedName": "malformedClientID",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO17malformedClientIDyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO17malformedClientIDyACSS_tcACmF",
+ "moduleName": "LinkKit"
},
{
"kind": "Var",
- "name": "userPhoneNumber",
- "printedName": "userPhoneNumber",
+ "name": "missingAuthorization",
+ "printedName": "missingAuthorization",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO20missingAuthorizationyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO20missingAuthorizationyACSS_tcACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Var",
+ "name": "noProduct",
+ "printedName": "noProduct",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO9noProductyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO9noProductyACSS_tcACmF",
+ "moduleName": "LinkKit"
},
{
"kind": "Var",
- "name": "linkCustomizationName",
- "printedName": "linkCustomizationName",
+ "name": "invalidOptionValue",
+ "printedName": "invalidOptionValue",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO18invalidOptionValueyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO18invalidOptionValueyACSS_tcACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Var",
+ "name": "invalidOptionCombination",
+ "printedName": "invalidOptionCombination",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO24invalidOptionCombinationyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO24invalidOptionCombinationyACSS_tcACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Var",
+ "name": "invalidToken",
+ "printedName": "invalidToken",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO12invalidTokenyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO12invalidTokenyACSS_tcACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Var",
+ "name": "message",
+ "printedName": "message",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvp",
+ "usr": "s:7LinkKit18ConfigurationErrorO7messageSSvp",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO7messageSSvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -7016,101 +6172,157 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvg",
+ "usr": "s:7LinkKit18ConfigurationErrorO7messageSSvg",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO7messageSSvg",
"moduleName": "LinkKit",
- "implicit": true,
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovp",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvs",
+ "usr": "s:7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovg",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovg",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "embeddedNSError",
+ "printedName": "embeddedNSError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvp",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvM",
+ "usr": "s:7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvg",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvg",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "isFromExtension": true,
+ "accessorKind": "get"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit18ConfigurationErrorO",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkExit",
+ "printedName": "LinkExit",
+ "children": [
{
"kind": "Var",
- "name": "accountSubtypes",
- "printedName": "accountSubtypes",
+ "name": "error",
+ "printedName": "error",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.AccountSubtype]",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitError?",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvp",
+ "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvp",
+ "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -7127,22 +6339,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.AccountSubtype]",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitError?",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvg",
+ "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvg",
+ "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -7159,22 +6371,22 @@
},
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.AccountSubtype]",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitError?",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvs",
+ "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvs",
+ "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -7191,8 +6403,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvM",
+ "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvM",
+ "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -7201,30 +6413,21 @@
},
{
"kind": "Var",
- "name": "oauthConfiguration",
- "printedName": "oauthConfiguration",
+ "name": "metadata",
+ "printedName": "metadata",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.OAuthNonceConfiguration?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- }
- ],
- "usr": "s:Sq"
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvp",
+ "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvp",
+ "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -7238,22 +6441,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.OAuthNonceConfiguration?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- }
- ],
- "usr": "s:Sq"
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvg",
+ "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvg",
+ "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -7270,22 +6465,14 @@
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.OAuthNonceConfiguration?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- }
- ],
- "usr": "s:Sq"
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvs",
+ "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvs",
+ "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -7302,8 +6489,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvM",
+ "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvM",
+ "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -7313,152 +6500,153 @@
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(clientName:environment:products:language:token:countryCodes:onSuccess:)",
+ "printedName": "init(error:metadata:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
},
{
"kind": "TypeNominal",
- "name": "Set",
- "printedName": "Swift.Set",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitError?",
"children": [
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
}
],
- "usr": "s:Sh"
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A4ExitV5error8metadataAcA0C5ErrorVSg_AA0C8MetadataVtcfc",
+ "mangledName": "$s7LinkKit0A4ExitV5error8metadataAcA0C5ErrorVSg_AA0C8MetadataVtcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
},
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientName11environment8products8language5token12countryCodes9onSuccessACSS_AA11EnvironmentOShyAA7ProductOGSSAC5TokenOSaySSGyAA0aO0Vctcfc",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientName11environment8products8language5token12countryCodes9onSuccessACSS_AA11EnvironmentOShyAA7ProductOGSSAC5TokenOSaySSGyAA0aO0Vctcfc",
+ "usr": "s:7LinkKit0A4ExitV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit0A4ExitV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
+ "implicit": true,
+ "throwing": true,
"init_kind": "Designated"
},
{
"kind": "Function",
- "name": "validate",
- "printedName": "validate()",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ConfigurationError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8validateAA0E5ErrorOSgyF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8validateAA0E5ErrorOSgyF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A4ExitV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit0A4ExitV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "loadSessionConfiguration",
- "printedName": "loadSessionConfiguration(_:_:_:_:_:)",
+ "name": "from",
+ "printedName": "from(_:_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Link_Workflow_Primitives_SDKResult",
+ "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult",
+ "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A4ExitV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgAHtFZ",
+ "mangledName": "$s7LinkKit0A4ExitV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgAHtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
{
"kind": "TypeNominal",
"name": "Bool",
@@ -7466,58 +6654,135 @@
"usr": "s:Sb"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token, WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token, WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "OneOf_Configuration",
- "printedName": "WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration",
- "usr": "s:13WorkflowProto09Link_Api_cA12StartRequestV19OneOf_ConfigurationO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV011loadSessionE0yySS_S2SSbyAC5TokenO_13WorkflowProto0a5_Api_aI12StartRequestV06OneOf_E0OtctF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV011loadSessionE0yySS_S2SSbyAC5TokenO_13WorkflowProto0a5_Api_aI12StartRequestV06OneOf_E0OtctF",
+ "usr": "s:7LinkKit0A4ExitV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit0A4ExitV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKLinkExit",
+ "printedName": "LinkKit.PLKLinkExit",
+ "usr": "c:objc(cs)PLKLinkExit"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvp",
+ "mangledName": "$s7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvp",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKLinkExit",
+ "printedName": "LinkKit.PLKLinkExit",
+ "usr": "c:objc(cs)PLKLinkExit"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvg",
+ "mangledName": "$s7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV",
+ "usr": "s:7LinkKit0A4ExitV",
+ "mangledName": "$s7LinkKit0A4ExitV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
"RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
"name": "AccountSubtype",
@@ -16314,15 +15579,218 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "LinkSuccess",
- "printedName": "LinkSuccess",
+ "name": "SuccessMetadata",
+ "printedName": "SuccessMetadata",
"children": [
{
"kind": "Var",
- "name": "publicToken",
- "printedName": "publicToken",
+ "name": "institution",
+ "printedName": "institution",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvs",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvM",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "accounts",
+ "printedName": "accounts",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Account]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Account]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Account]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvs",
+ "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvM",
+ "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "linkSessionID",
+ "printedName": "linkSessionID",
"children": [
{
"kind": "TypeNominal",
@@ -16332,8 +15800,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvp",
- "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvp",
+ "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasStorage",
@@ -16355,8 +15823,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvg",
- "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvg",
+ "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -16379,8 +15847,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvs",
- "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvs",
+ "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvs",
+ "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -16397,8 +15865,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvM",
- "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvM",
+ "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvM",
+ "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -16407,21 +15875,30 @@
},
{
"kind": "Var",
- "name": "metadata",
- "printedName": "metadata",
+ "name": "metadataJSON",
+ "printedName": "metadataJSON",
"children": [
{
"kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvp",
- "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvp",
+ "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -16435,14 +15912,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvg",
- "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvg",
+ "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -16459,14 +15944,22 @@
},
{
"kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvs",
- "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvs",
+ "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvs",
+ "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -16483,8 +15976,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvM",
- "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvM",
+ "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvM",
+ "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -16494,13 +15987,33 @@
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(publicToken:metadata:)",
+ "printedName": "init(institution:accounts:linkSessionID:metadataJSON:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Account]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
+ ],
+ "usr": "s:Sa"
},
{
"kind": "TypeNominal",
@@ -16510,14 +16023,23 @@
},
{
"kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A7SuccessV11publicToken8metadataACSS_AA0C8MetadataVtcfc",
- "mangledName": "$s7LinkKit0A7SuccessV11publicToken8metadataACSS_AA0C8MetadataVtcfc",
+ "usr": "s:7LinkKit15SuccessMetadataV11institution8accounts13linkSessionID12metadataJSONAcA11InstitutionV_SayAA7AccountVGS2SSgtcfc",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institution8accounts13linkSessionID12metadataJSONAcA11InstitutionV_SayAA7AccountVGS2SSgtcfc",
"moduleName": "LinkKit",
"implicit": true,
"init_kind": "Designated"
@@ -16529,9 +16051,9 @@
"children": [
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
},
{
"kind": "TypeNominal",
@@ -16541,8 +16063,8 @@
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A7SuccessV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit0A7SuccessV4fromACs7Decoder_p_tKcfc",
+ "usr": "s:7LinkKit15SuccessMetadataV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit15SuccessMetadataV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
"implicit": true,
"throwing": true,
@@ -16566,8 +16088,8 @@
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A7SuccessV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit0A7SuccessV6encode2toys7Encoder_p_tKF",
+ "usr": "s:7LinkKit15SuccessMetadataV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit15SuccessMetadataV6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"implicit": true,
"throwing": true,
@@ -16580,15 +16102,15 @@
"children": [
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
},
{
"kind": "TypeNominal",
- "name": "Link_Workflow_Primitives_SDKResult",
- "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult",
- "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV"
+ "name": "Metadata",
+ "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult.Metadata",
+ "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV8MetadataV"
},
{
"kind": "TypeNominal",
@@ -16606,8 +16128,8 @@
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A7SuccessV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgtFZ",
- "mangledName": "$s7LinkKit0A7SuccessV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgtFZ",
+ "usr": "s:7LinkKit15SuccessMetadataV4fromyAC13WorkflowProto0a1_F21_Primitives_SDKResultV0D0V_SSSgtFZ",
+ "mangledName": "$s7LinkKit15SuccessMetadataV4fromyAC13WorkflowProto0a1_F21_Primitives_SDKResultV0D0V_SSSgtFZ",
"moduleName": "LinkKit",
"static": true,
"isFromExtension": true,
@@ -16626,20 +16148,20 @@
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A7SuccessV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit0A7SuccessV2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit15SuccessMetadataV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit15SuccessMetadataV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
"isFromExtension": true,
@@ -16652,18 +16174,15 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkSuccess",
- "printedName": "LinkKit.PLKLinkSuccess",
- "usr": "c:objc(cs)PLKLinkSuccess"
+ "name": "PLKSuccessMetadata",
+ "printedName": "LinkKit.PLKSuccessMetadata",
+ "usr": "c:objc(cs)PLKSuccessMetadata"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvp",
- "mangledName": "$s7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvp",
+ "usr": "s:7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
"isFromExtension": true,
"accessors": [
{
@@ -16673,14 +16192,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkSuccess",
- "printedName": "LinkKit.PLKLinkSuccess",
- "usr": "c:objc(cs)PLKLinkSuccess"
+ "name": "PLKSuccessMetadata",
+ "printedName": "LinkKit.PLKSuccessMetadata",
+ "usr": "c:objc(cs)PLKSuccessMetadata"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvg",
- "mangledName": "$s7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvg",
+ "usr": "s:7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
@@ -16689,8 +16208,8 @@
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit0A7SuccessV",
- "mangledName": "$s7LinkKit0A7SuccessV",
+ "usr": "s:7LinkKit15SuccessMetadataV",
+ "mangledName": "$s7LinkKit15SuccessMetadataV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
@@ -16720,702 +16239,824 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
{
"kind": "TypeDecl",
- "name": "LinkExit",
- "printedName": "LinkExit",
+ "name": "ComponentPaneViewModel",
+ "printedName": "ComponentPaneViewModel",
"children": [
{
"kind": "Var",
- "name": "error",
- "printedName": "error",
+ "name": "content",
+ "printedName": "content",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitError?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ComponentPaneViewModel.Type) -> (Threads.NavigationProperties?, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Threads.NavigationProperties?, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(navigation: Threads.NavigationProperties?, content: LinkKit.Component)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Threads.NavigationProperties?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NavigationProperties",
+ "printedName": "Threads.NavigationProperties",
+ "usr": "s:7Threads20NavigationPropertiesV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "name": "Metatype",
+ "printedName": "LinkKit.ComponentPaneViewModel.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvp",
- "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO7contentyAC7Threads20NavigationPropertiesVSg_AA0C0VtcACmF",
+ "mangledName": "$s7LinkKit22ComponentPaneViewModelO7contentyAC7Threads20NavigationPropertiesVSg_AA0C0VtcACmF",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 0
+ },
+ {
+ "kind": "Var",
+ "name": "fixedFooter",
+ "printedName": "fixedFooter",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ComponentPaneViewModel.Type) -> (Threads.NavigationProperties?, LinkKit.Component, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitError?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Threads.NavigationProperties?, LinkKit.Component, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(navigation: Threads.NavigationProperties?, content: LinkKit.Component, footer: LinkKit.Component)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Threads.NavigationProperties?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NavigationProperties",
+ "printedName": "Threads.NavigationProperties",
+ "usr": "s:7Threads20NavigationPropertiesV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvg",
- "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitError?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ComponentPaneViewModel.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvs",
- "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvM",
- "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
- ]
- },
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO11fixedFooteryAC7Threads20NavigationPropertiesVSg_AA0C0VAJtcACmF",
+ "mangledName": "$s7LinkKit22ComponentPaneViewModelO11fixedFooteryAC7Threads20NavigationPropertiesVSg_AA0C0VAJtcACmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO",
+ "mangledName": "$s7LinkKit22ComponentPaneViewModelO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isEnumExhaustive": true,
+ "conformances": [
{
- "kind": "Var",
- "name": "metadata",
- "printedName": "metadata",
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ComponentPaneViewController",
+ "printedName": "ComponentPaneViewController",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(with:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "ComponentPaneViewController",
+ "printedName": "LinkKit.ComponentPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvp",
- "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC4withAcA0cdE5ModelO_tcfc",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC4withAcA0cdE5ModelO_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
+ "Custom",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ComponentPaneViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "ComponentPaneViewController",
+ "printedName": "LinkKit.ComponentPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvg",
- "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvg",
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "TransitionAnimation",
+ "printedName": "TransitionAnimation",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "push",
+ "printedName": "push",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ComponentPaneViewController.TransitionAnimation.Type) -> LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4pushyA2EmF",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4pushyA2EmF",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "fixedbinaryorder": 0
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "Var",
+ "name": "pop",
+ "printedName": "pop",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ComponentPaneViewController.TransitionAnimation.Type) -> LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO3popyA2EmF",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO3popyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvs",
- "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvs",
+ "declKind": "Func",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO2eeoiySbAE_AEtFZ",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO2eeoiySbAE_AEtFZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "Var",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvM",
- "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvM",
+ "declKind": "Var",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivp",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivp",
"moduleName": "LinkKit",
"implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(error:metadata:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivg",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitError?",
+ "kind": "Function",
+ "name": "hash",
+ "printedName": "hash(into:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "declKind": "Func",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4hash4intoys6HasherVz_tF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A4ExitV5error8metadataAcA0C5ErrorVSg_AA0C8MetadataVtcfc",
- "mangledName": "$s7LinkKit0A4ExitV5error8metadataAcA0C5ErrorVSg_AA0C8MetadataVtcfc",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isEnumExhaustive": true,
+ "conformances": [
{
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A4ExitV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit0A4ExitV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
},
{
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A4ExitV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit0A4ExitV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Function",
- "name": "from",
- "printedName": "from(_:_:_:)",
+ "name": "transition",
+ "printedName": "transition(to:animation:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- },
- {
- "kind": "TypeNominal",
- "name": "Link_Workflow_Primitives_SDKResult",
- "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult",
- "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
},
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
}
],
+ "hasDefaultArg": true,
"usr": "s:Sq"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A4ExitV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgAHtFZ",
- "mangledName": "$s7LinkKit0A4ExitV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgAHtFZ",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC10transition2to9animationyAA0cdE5ModelO_AC19TransitionAnimationOSgtF",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC10transition2to9animationyAA0cdE5ModelO_AC19TransitionAnimationOSgtF",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl"
+ ],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A4ExitV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit0A4ExitV2eeoiySbAC_ACtFZ",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC11viewDidLoadyyF",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "RawDocComment"
+ ],
"funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkExit",
- "printedName": "LinkKit.PLKLinkExit",
- "usr": "c:objc(cs)PLKLinkExit"
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvp",
- "mangledName": "$s7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvp",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC9viewModel33_AAA813881AE0A64F5A37E01EE9BE9C36LLAA0cdeH0Ovp",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC9viewModel33_AAA813881AE0A64F5A37E01EE9BE9C36LLAA0cdeH0Ovp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "AccessControl"
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
],
- "isFromExtension": true,
- "accessors": [
+ "fixedbinaryorder": 0,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "layoutView",
+ "printedName": "layoutView",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "UIKit.UIView?",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkExit",
- "printedName": "LinkKit.PLKLinkExit",
- "usr": "c:objc(cs)PLKLinkExit"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvg",
- "mangledName": "$s7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit0A4ExitV",
- "mangledName": "$s7LinkKit0A4ExitV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC06layoutE033_AAA813881AE0A64F5A37E01EE9BE9C36LLSo6UIViewCSgvp",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC06layoutE033_AAA813881AE0A64F5A37E01EE9BE9C36LLSo6UIViewCSgvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 1,
+ "hasStorage": true
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LinkEvent",
- "printedName": "LinkEvent",
- "children": [
{
"kind": "Var",
- "name": "eventName",
- "printedName": "eventName",
+ "name": "layoutConstraints",
+ "printedName": "layoutConstraints",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Array",
+ "printedName": "[UIKit.NSLayoutConstraint]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSLayoutConstraint",
+ "printedName": "UIKit.NSLayoutConstraint",
+ "usr": "c:objc(cs)NSLayoutConstraint"
+ }
+ ],
+ "usr": "s:Sa"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovp",
- "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovp",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC17layoutConstraints33_AAA813881AE0A64F5A37E01EE9BE9C36LLSaySo18NSLayoutConstraintCGvp",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC17layoutConstraints33_AAA813881AE0A64F5A37E01EE9BE9C36LLSaySo18NSLayoutConstraintCGvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovg",
- "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovs",
- "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0OvM",
- "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0OvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
+ "fixedbinaryorder": 2,
+ "hasStorage": true
},
{
- "kind": "Var",
- "name": "metadata",
- "printedName": "metadata",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvp",
- "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvg",
- "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "name": "ComponentPaneViewController",
+ "printedName": "LinkKit.ComponentPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvs",
- "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvM",
- "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "usr": "s:Sq"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit0A5EventV4fromACs7Decoder_p_tKcfc",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "AccessControl"
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
],
- "throwing": true,
"init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(eventName:metadata:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV9eventName8metadataAcA0cE0O_AA0C8MetadataVtcfc",
- "mangledName": "$s7LinkKit0A5EventV9eventName8metadataAcA0cE0O_AA0C8MetadataVtcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "SDKReleaseLoader",
+ "printedName": "SDKReleaseLoader",
+ "children": [
{
"kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "name": "loadAvailableSDKVersions",
+ "printedName": "loadAvailableSDKVersions(completionHandler:)",
"children": [
{
"kind": "TypeNominal",
@@ -17423,53 +17064,101 @@
"printedName": "()"
},
{
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Result<[LinkKit.GithubRelease], Swift.Error>) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Result",
+ "printedName": "Swift.Result<[LinkKit.GithubRelease], Swift.Error>",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.GithubRelease]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GithubRelease",
+ "printedName": "LinkKit.GithubRelease",
+ "usr": "s:7LinkKit13GithubReleaseV"
+ }
+ ],
+ "usr": "s:Sa"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:s6ResultO"
+ }
+ ]
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A5EventV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit0A5EventV6encode2toys7Encoder_p_tKF",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA13GithubReleaseVGs5Error_pGc_tF",
+ "mangledName": "$s7LinkKit16SDKReleaseLoaderP24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA13GithubReleaseVGs5Error_pGc_tF",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.SDKReleaseLoader>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
"funcSelfKind": "NonMutating"
- },
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP",
+ "mangledName": "$s7LinkKit16SDKReleaseLoaderP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "GithubSDKReleaseLoader",
+ "printedName": "GithubSDKReleaseLoader",
+ "children": [
{
"kind": "TypeDecl",
- "name": "CodingKeys",
- "printedName": "CodingKeys",
+ "name": "ReleaseLoaderError",
+ "printedName": "ReleaseLoaderError",
"children": [
{
"kind": "Var",
- "name": "eventName",
- "printedName": "eventName",
+ "name": "invalidURL",
+ "printedName": "invalidURL",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkEvent.CodingKeys.Type) -> LinkKit.LinkEvent.CodingKeys",
+ "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.LinkEvent.CodingKeys.Type",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
}
]
}
@@ -17477,37 +17166,37 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO9eventNameyA2EmF",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO9eventNameyA2EmF",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO10invalidURLyA2EmF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO10invalidURLyA2EmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 0
},
{
"kind": "Var",
- "name": "metadata",
- "printedName": "metadata",
+ "name": "missingData",
+ "printedName": "missingData",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkEvent.CodingKeys.Type) -> LinkKit.LinkEvent.CodingKeys",
+ "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.LinkEvent.CodingKeys.Type",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
}
]
}
@@ -17515,180 +17204,137 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8metadatayA2EmF",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8metadatayA2EmF",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO11missingDatayA2EmF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO11missingDatayA2EmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 1
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
+ "kind": "Var",
+ "name": "api",
+ "printedName": "api",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.LinkEvent.CodingKeys?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> (Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueAESgSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO3apiyAEs0G0_pcAEmF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO3apiyAEs0G0_pcAEmF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "fixedbinaryorder": 2
},
{
"kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
+ "name": "decoding",
+ "printedName": "decoding",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueSSvp",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueSSvg",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "stringValue",
- "printedName": "stringValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueSSvp",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> (Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueSSvg",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.LinkEvent.CodingKeys?",
- "children": [
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueAESgSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO8decodingyAEs0G0_pcAEmF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO8decodingyAEs0G0_pcAEmF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "fixedbinaryorder": 3
},
{
"kind": "Var",
- "name": "intValue",
- "printedName": "intValue",
+ "name": "errorDescription",
+ "printedName": "errorDescription",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.Int?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueSiSgvp",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueSiSgvp",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvp",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvp",
"moduleName": "LinkKit",
- "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -17698,127 +17344,46 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.Int?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueSiSgvg",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueSiSgvg",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvg",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvg",
"moduleName": "LinkKit",
- "implicit": true,
"accessorKind": "get"
}
]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(intValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.LinkEvent.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueAESgSi_tcfc",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueAESgSi_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "enumRawTypeName": "String",
"isEnumExhaustive": true,
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "CodingKey",
- "printedName": "CodingKey",
- "usr": "s:s9CodingKeyP",
- "mangledName": "$ss9CodingKeyP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "LocalizedError",
+ "printedName": "LocalizedError",
+ "usr": "s:10Foundation14LocalizedErrorP",
+ "mangledName": "$s10Foundation14LocalizedErrorP"
},
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
},
{
"kind": "Conformance",
@@ -17830,254 +17395,224 @@
]
},
{
- "kind": "Var",
- "name": "dateFormatter",
- "printedName": "dateFormatter",
+ "kind": "Function",
+ "name": "loadAvailableSDKVersions",
+ "printedName": "loadAvailableSDKVersions(completionHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ISO8601DateFormatter",
- "printedName": "Foundation.ISO8601DateFormatter",
- "usr": "c:objc(cs)NSISO8601DateFormatter"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvpZ",
- "mangledName": "$s7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage"
- ],
- "isFromExtension": true,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "name": "Void",
+ "printedName": "()"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Result<[LinkKit.GithubRelease], Swift.Error>) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ISO8601DateFormatter",
- "printedName": "Foundation.ISO8601DateFormatter",
- "usr": "c:objc(cs)NSISO8601DateFormatter"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Result",
+ "printedName": "Swift.Result<[LinkKit.GithubRelease], Swift.Error>",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.GithubRelease]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GithubRelease",
+ "printedName": "LinkKit.GithubRelease",
+ "usr": "s:7LinkKit13GithubReleaseV"
+ }
+ ],
+ "usr": "s:Sa"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:s6ResultO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvgZ",
- "mangledName": "$s7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA0C7ReleaseVGs5Error_pGc_tF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA0C7ReleaseVGs5Error_pGc_tF",
+ "moduleName": "LinkKit",
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Function",
- "name": "from",
- "printedName": "from(_:_:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Link_Workflow_Nodes_Panes_SDKEvent",
- "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_SDKEvent",
- "usr": "s:13WorkflowProto05Link_A21_Nodes_Panes_SDKEventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "GithubSDKReleaseLoader",
+ "printedName": "LinkKit.GithubSDKReleaseLoader",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A5EventV4fromyAC13WorkflowProto0a1_E21_Nodes_Panes_SDKEventV_SSSgtFZ",
- "mangledName": "$s7LinkKit0A5EventV4fromyAC13WorkflowProto0a1_E21_Nodes_Panes_SDKEventV_SSSgtFZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderVACycfc",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderVACycfc",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV",
+ "moduleName": "LinkKit",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "SDKReleaseLoader",
+ "printedName": "SDKReleaseLoader",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP",
+ "mangledName": "$s7LinkKit16SDKReleaseLoaderP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkHandlerAction",
+ "printedName": "LinkHandlerAction",
+ "children": [
{
"kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "name": "composeMail",
+ "printedName": "composeMail(to:using:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
},
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A5EventV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit0A5EventV2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit0A13HandlerActionV11composeMail2to5usingy10Foundation3URLV_So16UIViewControllerCtFZ",
+ "mangledName": "$s7LinkKit0A13HandlerActionV11composeMail2to5usingy10Foundation3URLV_So16UIViewControllerCtFZ",
"moduleName": "LinkKit",
"static": true,
- "isFromExtension": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
"funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkEvent",
- "printedName": "LinkKit.PLKLinkEvent",
- "usr": "c:objc(cs)PLKLinkEvent"
+ "name": "LinkHandlerAction",
+ "printedName": "LinkKit.LinkHandlerAction",
+ "usr": "s:7LinkKit0A13HandlerActionV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvp",
- "mangledName": "$s7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A13HandlerActionVACycfc",
+ "mangledName": "$s7LinkKit0A13HandlerActionVACycfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKLinkEvent",
- "printedName": "LinkKit.PLKLinkEvent",
- "usr": "c:objc(cs)PLKLinkEvent"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvg",
- "mangledName": "$s7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
+ "implicit": true,
+ "init_kind": "Designated"
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit0A5EventV",
- "mangledName": "$s7LinkKit0A5EventV",
+ "usr": "s:7LinkKit0A13HandlerActionV",
+ "mangledName": "$s7LinkKit0A13HandlerActionV",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "ConfigurationError",
- "printedName": "ConfigurationError",
+ "name": "RateLimitErrorCode",
+ "printedName": "RateLimitErrorCode",
"children": [
{
"kind": "Var",
- "name": "malformedClientID",
- "printedName": "malformedClientID",
+ "name": "accountsLimit",
+ "printedName": "accountsLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18085,56 +17620,39 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO17malformedClientIDyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO17malformedClientIDyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "missingAuthorization",
- "printedName": "missingAuthorization",
+ "name": "additionLimit",
+ "printedName": "additionLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18142,56 +17660,79 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO20missingAuthorizationyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO20missingAuthorizationyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "noProduct",
- "printedName": "noProduct",
+ "name": "authLimit",
+ "printedName": "authLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04authD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "identityLimit",
+ "printedName": "identityLimit",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18199,56 +17740,79 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO9noProductyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO9noProductyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "invalidOptionValue",
- "printedName": "invalidOptionValue",
+ "name": "incomeLimit",
+ "printedName": "incomeLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "itemGetLimit",
+ "printedName": "itemGetLimit",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18256,56 +17820,79 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO18invalidOptionValueyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO18invalidOptionValueyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "invalidOptionCombination",
- "printedName": "invalidOptionCombination",
+ "name": "rateLimit",
+ "printedName": "rateLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "transactionsLimit",
+ "printedName": "transactionsLimit",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18313,56 +17900,52 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO24invalidOptionCombinationyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO24invalidOptionCombinationyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "invalidToken",
- "printedName": "invalidToken",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> (Swift.String) -> LinkKit.RateLimitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(Swift.String) -> LinkKit.RateLimitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18370,14 +17953,41 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO12invalidTokenyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO12invalidTokenyACSS_tcACmF",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO7unknownyACSScACmF",
"moduleName": "LinkKit"
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO6stringACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
{
"kind": "Var",
- "name": "message",
- "printedName": "message",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
@@ -18387,9 +17997,12 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18ConfigurationErrorO7messageSSvp",
- "mangledName": "$s7LinkKit18ConfigurationErrorO7messageSSvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
"accessors": [
{
"kind": "Accessor",
@@ -18404,8 +18017,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18ConfigurationErrorO7messageSSvg",
- "mangledName": "$s7LinkKit18ConfigurationErrorO7messageSSvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
"accessorKind": "get"
}
@@ -18413,21 +18026,28 @@
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "accountsLimitString",
+ "printedName": "accountsLimitString",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovp",
- "mangledName": "$s7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvpZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18436,37 +18056,48 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovg",
- "mangledName": "$s7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "embeddedNSError",
- "printedName": "embeddedNSError",
+ "name": "additionLimitString",
+ "printedName": "additionLimitString",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvp",
- "mangledName": "$s7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD6StringSSvpZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18475,189 +18106,148 @@
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
"declKind": "Accessor",
- "usr": "s:7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvg",
- "mangledName": "$s7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD6StringSSvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit18ConfigurationErrorO",
- "mangledName": "$s7LinkKit18ConfigurationErrorO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Environment",
- "printedName": "Environment",
- "children": [
{
"kind": "Var",
- "name": "production",
- "printedName": "production",
+ "name": "authLimitString",
+ "printedName": "authLimitString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Environment.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit11EnvironmentO10productionyA2CmF",
- "mangledName": "$s7LinkKit11EnvironmentO10productionyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04authD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "development",
- "printedName": "development",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Environment.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04authD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD6StringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit11EnvironmentO11developmentyA2CmF",
- "mangledName": "$s7LinkKit11EnvironmentO11developmentyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "sandbox",
- "printedName": "sandbox",
+ "name": "identityLimitString",
+ "printedName": "identityLimitString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD6StringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Environment.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD6StringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit11EnvironmentO7sandboxyA2CmF",
- "mangledName": "$s7LinkKit11EnvironmentO7sandboxyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "baseURL",
- "printedName": "baseURL",
+ "name": "incomeLimitString",
+ "printedName": "incomeLimitString",
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvp",
- "mangledName": "$s7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18666,23 +18256,28 @@
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvg",
- "mangledName": "$s7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "itemGetLimitString",
+ "printedName": "itemGetLimitString",
"children": [
{
"kind": "TypeNominal",
@@ -18692,12 +18287,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11EnvironmentO11descriptionSSvp",
- "mangledName": "$s7LinkKit11EnvironmentO11descriptionSSvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18712,62 +18312,42 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11EnvironmentO11descriptionSSvg",
- "mangledName": "$s7LinkKit11EnvironmentO11descriptionSSvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11EnvironmentO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit11EnvironmentO2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
{
"kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
+ "name": "rateLimitString",
+ "printedName": "rateLimitString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11EnvironmentO9hashValueSivp",
- "mangledName": "$s7LinkKit11EnvironmentO9hashValueSivp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD6StringSSvpZ",
"moduleName": "LinkKit",
- "implicit": true,
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18776,49 +18356,28 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11EnvironmentO9hashValueSivg",
- "mangledName": "$s7LinkKit11EnvironmentO9hashValueSivg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11EnvironmentO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit11EnvironmentO4hash4intoys6HasherVz_tF",
- "moduleName": "LinkKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
{
"kind": "Var",
- "name": "valueForQueryString",
- "printedName": "valueForQueryString",
+ "name": "transactionsLimitString",
+ "printedName": "transactionsLimitString",
"children": [
{
"kind": "TypeNominal",
@@ -18828,13 +18387,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11EnvironmentO19valueForQueryStringSSvp",
- "mangledName": "$s7LinkKit11EnvironmentO19valueForQueryStringSSvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "isFromExtension": true,
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18849,65 +18412,88 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11EnvironmentO19valueForQueryStringSSvg",
- "mangledName": "$s7LinkKit11EnvironmentO19valueForQueryStringSSvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
- "kind": "Function",
- "name": "fuzzyMatches",
- "printedName": "fuzzyMatches(linkToken:)",
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKRateLimitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKRateLimitErrorCode",
+ "printedName": "LinkKit.PLKRateLimitErrorCode",
+ "usr": "c:@E@PLKRateLimitErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit11EnvironmentO12fuzzyMatches9linkTokenSbSS_tF",
- "mangledName": "$s7LinkKit11EnvironmentO12fuzzyMatches9linkTokenSbSS_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvp",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
"isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKRateLimitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKRateLimitErrorCode",
+ "printedName": "LinkKit.PLKRateLimitErrorCode",
+ "usr": "c:@E@PLKRateLimitErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvg",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit11EnvironmentO",
- "mangledName": "$s7LinkKit11EnvironmentO",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
},
{
"kind": "Conformance",
@@ -18915,412 +18501,111 @@
"printedName": "CustomStringConvertible",
"usr": "s:s23CustomStringConvertibleP",
"mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "Product",
- "printedName": "Product",
+ "name": "SemanticVersion",
+ "printedName": "SemanticVersion",
"children": [
{
- "kind": "Var",
- "name": "assets",
- "printedName": "assets",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(versionString:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.SemanticVersion?",
"children": [
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO6assetsyA2CmF",
- "mangledName": "$s7LinkKit7ProductO6assetsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "auth",
- "printedName": "auth",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO4authyA2CmF",
- "mangledName": "$s7LinkKit7ProductO4authyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "depositSwitch",
- "printedName": "depositSwitch",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO13depositSwitchyA2CmF",
- "mangledName": "$s7LinkKit7ProductO13depositSwitchyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identity",
- "printedName": "identity",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO8identityyA2CmF",
- "mangledName": "$s7LinkKit7ProductO8identityyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "income",
- "printedName": "income",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO6incomeyA2CmF",
- "mangledName": "$s7LinkKit7ProductO6incomeyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "investments",
- "printedName": "investments",
- "children": [
+ ],
+ "usr": "s:Sq"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO11investmentsyA2CmF",
- "mangledName": "$s7LinkKit7ProductO11investmentsyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit15SemanticVersionV13versionStringACSgSS_tcfc",
+ "mangledName": "$s7LinkKit15SemanticVersionV13versionStringACSgSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "liabilities",
- "printedName": "liabilities",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO11liabilitiesyA2CmF",
- "mangledName": "$s7LinkKit7ProductO11liabilitiesyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "liabilitiesReport",
- "printedName": "liabilitiesReport",
+ "name": "versionString",
+ "printedName": "versionString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO17liabilitiesReportyA2CmF",
- "mangledName": "$s7LinkKit7ProductO17liabilitiesReportyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit15SemanticVersionV13versionStringSSvp",
+ "mangledName": "$s7LinkKit15SemanticVersionV13versionStringSSvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "paymentInitiation",
- "printedName": "paymentInitiation",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO17paymentInitiationyA2CmF",
- "mangledName": "$s7LinkKit7ProductO17paymentInitiationyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "transactions",
- "printedName": "transactions",
- "children": [
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SemanticVersionV13versionStringSSvg",
+ "mangledName": "$s7LinkKit15SemanticVersionV13versionStringSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO12transactionsyA2CmF",
- "mangledName": "$s7LinkKit7ProductO12transactionsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
@@ -19336,8 +18621,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO11descriptionSSvp",
- "mangledName": "$s7LinkKit7ProductO11descriptionSSvp",
+ "usr": "s:7LinkKit15SemanticVersionV11descriptionSSvp",
+ "mangledName": "$s7LinkKit15SemanticVersionV11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -19356,8 +18641,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO11descriptionSSvg",
- "mangledName": "$s7LinkKit7ProductO11descriptionSSvg",
+ "usr": "s:7LinkKit15SemanticVersionV11descriptionSSvg",
+ "mangledName": "$s7LinkKit15SemanticVersionV11descriptionSSvg",
"moduleName": "LinkKit",
"accessorKind": "get"
}
@@ -19365,28 +18650,24 @@
},
{
"kind": "Var",
- "name": "assetsString",
- "printedName": "assetsString",
+ "name": "major",
+ "printedName": "major",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO12assetsStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO12assetsStringSSvpZ",
+ "usr": "s:7LinkKit15SemanticVersionV5majorSivp",
+ "mangledName": "$s7LinkKit15SemanticVersionV5majorSivp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -19395,48 +18676,39 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO12assetsStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO12assetsStringSSvgZ",
+ "usr": "s:7LinkKit15SemanticVersionV5majorSivg",
+ "mangledName": "$s7LinkKit15SemanticVersionV5majorSivg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "authString",
- "printedName": "authString",
+ "name": "minor",
+ "printedName": "minor",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO10authStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO10authStringSSvpZ",
+ "usr": "s:7LinkKit15SemanticVersionV5minorSivp",
+ "mangledName": "$s7LinkKit15SemanticVersionV5minorSivp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -19445,48 +18717,39 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO10authStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO10authStringSSvgZ",
+ "usr": "s:7LinkKit15SemanticVersionV5minorSivg",
+ "mangledName": "$s7LinkKit15SemanticVersionV5minorSivg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "depositSwitchString",
- "printedName": "depositSwitchString",
+ "name": "patch",
+ "printedName": "patch",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO19depositSwitchStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO19depositSwitchStringSSvpZ",
+ "usr": "s:7LinkKit15SemanticVersionV5patchSivp",
+ "mangledName": "$s7LinkKit15SemanticVersionV5patchSivp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -19495,378 +18758,125 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO19depositSwitchStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO19depositSwitchStringSSvgZ",
+ "usr": "s:7LinkKit15SemanticVersionV5patchSivg",
+ "mangledName": "$s7LinkKit15SemanticVersionV5patchSivg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "identityString",
- "printedName": "identityString",
+ "name": "components",
+ "printedName": "components",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO14identityStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO14identityStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Array",
+ "printedName": "[Swift.Int]",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO14identityStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO14identityStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "incomeString",
- "printedName": "incomeString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "usr": "s:Sa"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO12incomeStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO12incomeStringSSvpZ",
+ "usr": "s:7LinkKit15SemanticVersionV10components33_5723E2495FAE01EBDD8BE3861CED1ED5LLSaySiGvp",
+ "mangledName": "$s7LinkKit15SemanticVersionV10components33_5723E2495FAE01EBDD8BE3861CED1ED5LLSaySiGvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
+ "fixedbinaryorder": 1,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO12incomeStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO12incomeStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
- "kind": "Var",
- "name": "investmentsString",
- "printedName": "investmentsString",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO17investmentsStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO17investmentsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO17investmentsStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO17investmentsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "liabilitiesString",
- "printedName": "liabilitiesString",
- "children": [
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO17liabilitiesStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO17liabilitiesStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO17liabilitiesStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO17liabilitiesStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "liabilitiesReportString",
- "printedName": "liabilitiesReportString",
- "children": [
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO23liabilitiesReportStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO23liabilitiesReportStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit15SemanticVersionV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit15SemanticVersionV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO23liabilitiesReportStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO23liabilitiesReportStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "paymentInitiationString",
- "printedName": "paymentInitiationString",
+ "kind": "Function",
+ "name": "<",
+ "printedName": "<(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO23paymentInitiationStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO23paymentInitiationStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO23paymentInitiationStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO23paymentInitiationStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "transactionsString",
- "printedName": "transactionsString",
- "children": [
+ "kind": "TypeNominal",
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO18transactionsStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO18transactionsStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit15SemanticVersionV1loiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit15SemanticVersionV1loiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO18transactionsStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO18transactionsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "name": ">",
+ "printedName": ">(_:_:)",
"children": [
{
"kind": "TypeNominal",
@@ -19876,154 +18886,34 @@
},
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
},
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit7ProductO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit7ProductO2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit15SemanticVersionV1goiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit15SemanticVersionV1goiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO9hashValueSivp",
- "mangledName": "$s7LinkKit7ProductO9hashValueSivp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO9hashValueSivg",
- "mangledName": "$s7LinkKit7ProductO9hashValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
+ "declAttributes": [
+ "AccessControl"
],
- "declKind": "Func",
- "usr": "s:7LinkKit7ProductO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit7ProductO4hash4intoys6HasherVz_tF",
- "moduleName": "LinkKit",
- "implicit": true,
"funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "allCases",
- "printedName": "allCases",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Product]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO8allCasesSayACGvpZ",
- "mangledName": "$s7LinkKit7ProductO8allCasesSayACGvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Product]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO8allCasesSayACGvgZ",
- "mangledName": "$s7LinkKit7ProductO8allCasesSayACGvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "accessorKind": "get"
- }
- ]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit7ProductO",
- "mangledName": "$s7LinkKit7ProductO",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit15SemanticVersionV",
+ "mangledName": "$s7LinkKit15SemanticVersionV",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"conformances": [
{
@@ -20035,10 +18925,10 @@
},
{
"kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
},
{
"kind": "Conformance",
@@ -20049,887 +18939,1018 @@
},
{
"kind": "Conformance",
- "name": "CaseIterable",
- "printedName": "CaseIterable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "AllCases",
- "printedName": "AllCases",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Product]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sa"
- }
- ]
- }
- ],
- "usr": "s:s12CaseIterableP",
- "mangledName": "$ss12CaseIterableP"
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
{
"kind": "TypeDecl",
- "name": "VerificationStatus",
- "printedName": "VerificationStatus",
+ "name": "EmbeddedSearchModuleView",
+ "printedName": "EmbeddedSearchModuleView",
"children": [
{
- "kind": "Var",
- "name": "pendingAutomaticVerification",
- "printedName": "pendingAutomaticVerification",
+ "kind": "TypeDecl",
+ "name": "Style",
+ "printedName": "Style",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
+ "kind": "Var",
+ "name": "primary",
+ "printedName": "primary",
"children": [
{
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.VerificationStatus.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18VerificationStatusO016pendingAutomaticC0yA2CmF",
- "mangledName": "$s7LinkKit18VerificationStatusO016pendingAutomaticC0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "pendingManualVerification",
- "printedName": "pendingManualVerification",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.VerificationStatus.Type",
- "children": [
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ },
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18VerificationStatusO013pendingManualC0yA2CmF",
- "mangledName": "$s7LinkKit18VerificationStatusO013pendingManualC0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "manuallyVerified",
- "printedName": "manuallyVerified",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO7primaryyA2EmF",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO7primaryyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
+ "kind": "Var",
+ "name": "secondary",
+ "printedName": "secondary",
"children": [
{
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.VerificationStatus.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18VerificationStatusO16manuallyVerifiedyA2CmF",
- "mangledName": "$s7LinkKit18VerificationStatusO16manuallyVerifiedyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9secondaryyA2EmF",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9secondaryyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.VerificationStatus.Type) -> (Swift.String) -> LinkKit.VerificationStatus",
+ "kind": "Var",
+ "name": "tertiary",
+ "printedName": "tertiary",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String) -> LinkKit.VerificationStatus",
+ "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ }
+ ]
}
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8tertiaryyA2EmF",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8tertiaryyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 2
+ },
+ {
+ "kind": "Var",
+ "name": "textKind",
+ "printedName": "textKind",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.VerificationStatus.Type",
+ "name": "TextKind",
+ "printedName": "Threads.TextKind",
+ "usr": "s:7Threads8TextKindO"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovp",
+ "moduleName": "LinkKit",
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "TextKind",
+ "printedName": "Threads.TextKind",
+ "usr": "s:7Threads8TextKindO"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovg",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18VerificationStatusO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit18VerificationStatusO7unknownyACSScACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
},
{
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18VerificationStatusO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit18VerificationStatusO4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.VerificationStatus?",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
}
],
- "usr": "s:Sq"
+ "declKind": "Func",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO2eeoiySbAE_AEtFZ",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO2eeoiySbAE_AEtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18VerificationStatusO8rawValueACSgSS_tcfc",
- "mangledName": "$s7LinkKit18VerificationStatusO8rawValueACSgSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18VerificationStatusO11descriptionSSvp",
- "mangledName": "$s7LinkKit18VerificationStatusO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "Var",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18VerificationStatusO11descriptionSSvg",
- "mangledName": "$s7LinkKit18VerificationStatusO11descriptionSSvg",
+ "declKind": "Var",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivp",
"moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivg",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "Function",
+ "name": "hash",
+ "printedName": "hash(into:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO4hash4intoys6HasherVz_tF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18VerificationStatusO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit18VerificationStatusO6encode2toys7Encoder_p_tKF",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
],
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
},
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(viewModel:style:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "EmbeddedSearchModuleView",
+ "printedName": "LinkKit.EmbeddedSearchModuleView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView"
},
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "EmbeddedSearchModuleViewModel",
+ "printedName": "Workflow.EmbeddedSearchModuleViewModel",
+ "usr": "s:8Workflow29EmbeddedSearchModuleViewModelC"
},
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18VerificationStatusO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit18VerificationStatusO2eeoiySbAC_ACtFZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC9viewModel5styleAC8Workflow0cdefH0C_AC5StyleOtcfc",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC9viewModel5styleAC8Workflow0cdefH0C_AC5StyleOtcfc",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "declAttributes": [
+ "Custom",
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKVerificationStatus",
- "printedName": "LinkKit.PLKVerificationStatus",
- "usr": "c:objc(cs)PLKVerificationStatus"
+ "name": "EmbeddedSearchModuleViewModel",
+ "printedName": "Workflow.EmbeddedSearchModuleViewModel",
+ "usr": "s:8Workflow29EmbeddedSearchModuleViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvp",
- "mangledName": "$s7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC9viewModel33_8B1E8952538FE6432CBE3AC02A54F6CBLL8Workflow0cdefH0Cvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC9viewModel33_8B1E8952538FE6432CBE3AC02A54F6CBLL8Workflow0cdefH0Cvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKVerificationStatus",
- "printedName": "LinkKit.PLKVerificationStatus",
- "usr": "c:objc(cs)PLKVerificationStatus"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvg",
- "mangledName": "$s7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit18VerificationStatusO",
- "mangledName": "$s7LinkKit18VerificationStatusO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Account",
- "printedName": "Account",
- "children": [
{
"kind": "Var",
- "name": "id",
- "printedName": "id",
+ "name": "style",
+ "printedName": "style",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV2idSSvp",
- "mangledName": "$s7LinkKit7AccountV2idSSvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5style33_8B1E8952538FE6432CBE3AC02A54F6CBLLAC5StyleOvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5style33_8B1E8952538FE6432CBE3AC02A54F6CBLLAC5StyleOvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "fixedbinaryorder": 1,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV2idSSvg",
- "mangledName": "$s7LinkKit7AccountV2idSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "name",
- "printedName": "name",
+ "name": "hStack",
+ "printedName": "hStack",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "UIStackView",
+ "printedName": "UIKit.UIStackView",
+ "usr": "c:objc(cs)UIStackView"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV4nameSSvp",
- "mangledName": "$s7LinkKit7AccountV4nameSSvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC6hStack33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo07UIStackF0Cvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC6hStack33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo07UIStackF0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "fixedbinaryorder": 2,
"isLet": true,
- "hasStorage": true,
- "accessors": [
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "tapGesture",
+ "printedName": "tapGesture",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV4nameSSvg",
- "mangledName": "$s7LinkKit7AccountV4nameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "UITapGestureRecognizer",
+ "printedName": "UIKit.UITapGestureRecognizer",
+ "usr": "c:objc(cs)UITapGestureRecognizer"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC10tapGesture33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo05UITapH10RecognizerCvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC10tapGesture33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo05UITapH10RecognizerCvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 3,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "mask",
- "printedName": "mask",
+ "name": "$__lazy_storage_$_leadingAsset",
+ "printedName": "$__lazy_storage_$_leadingAsset",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Threads.RenderedAsset?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "RenderedAsset",
+ "printedName": "Threads.RenderedAsset",
+ "usr": "c:@M@Threads@objc(cs)RenderedAsset"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV4maskSSSgvp",
- "mangledName": "$s7LinkKit7AccountV4maskSSSgvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC30$__lazy_storage_$_leadingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC30$__lazy_storage_$_leadingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV4maskSSSgvg",
- "mangledName": "$s7LinkKit7AccountV4maskSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
+ "fixedbinaryorder": 4,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "subtype",
- "printedName": "subtype",
+ "name": "$__lazy_storage_$_text",
+ "printedName": "$__lazy_storage_$_text",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "Optional",
+ "printedName": "UIKit.UILabel?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UILabel",
+ "printedName": "UIKit.UILabel",
+ "usr": "c:objc(cs)UILabel"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV7subtypeAA0C7SubtypeOvp",
- "mangledName": "$s7LinkKit7AccountV7subtypeAA0C7SubtypeOvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC22$__lazy_storage_$_text33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC22$__lazy_storage_$_text33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 5,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "$__lazy_storage_$_secondaryText",
+ "printedName": "$__lazy_storage_$_secondaryText",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "UIKit.UILabel?",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "UILabel",
+ "printedName": "UIKit.UILabel",
+ "usr": "c:objc(cs)UILabel"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV7subtypeAA0C7SubtypeOvg",
- "mangledName": "$s7LinkKit7AccountV7subtypeAA0C7SubtypeOvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_secondaryText33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_secondaryText33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "HasStorage",
+ "Final"
+ ],
+ "fixedbinaryorder": 6,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "verificationStatus",
- "printedName": "verificationStatus",
+ "name": "$__lazy_storage_$_trailingAsset",
+ "printedName": "$__lazy_storage_$_trailingAsset",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.VerificationStatus?",
+ "printedName": "Threads.RenderedAsset?",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "RenderedAsset",
+ "printedName": "Threads.RenderedAsset",
+ "usr": "c:@M@Threads@objc(cs)RenderedAsset"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvp",
- "mangledName": "$s7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_trailingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_trailingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.VerificationStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvg",
- "mangledName": "$s7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(id:name:mask:subtype:verificationStatus:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
- },
+ "fixedbinaryorder": 7,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(frame:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EmbeddedSearchModuleView",
+ "printedName": "LinkKit.EmbeddedSearchModuleView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
+ "name": "CGRect",
+ "printedName": "CoreFoundation.CGRect",
+ "usr": "c:@S@CGRect"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView(im)initWithFrame:",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5frameACSo6CGRectV_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithFrame:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIView",
+ "superclassNames": [
+ "UIKit.UIView",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "__DefaultCustomPlaygroundQuickLookable",
+ "printedName": "__DefaultCustomPlaygroundQuickLookable",
+ "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
+ "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "LayoutArea",
+ "printedName": "LayoutArea",
+ "usr": "s:9AppCoreUI10LayoutAreaP",
+ "mangledName": "$s9AppCoreUI10LayoutAreaP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ApiErrorCode",
+ "printedName": "ApiErrorCode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "internalServerError",
+ "printedName": "internalServerError",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ApiErrorCode.Type) -> LinkKit.ApiErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.VerificationStatus?",
- "children": [
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ },
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Metatype",
+ "printedName": "LinkKit.ApiErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ }
+ ]
}
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit7AccountV2id4name4mask7subtype18verificationStatusACSS_S2SSgAA0C7SubtypeOAA012VerificationI0OSgtcfc",
- "mangledName": "$s7LinkKit7AccountV2id4name4mask7subtype18verificationStatusACSS_S2SSgAA0C7SubtypeOAA012VerificationI0OSgtcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD0yA2CmF",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD0yA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Var",
+ "name": "plannedMaintenance",
+ "printedName": "plannedMaintenance",
"children": [
{
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ApiErrorCode.Type) -> LinkKit.ApiErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ApiErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit7AccountV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit7AccountV4fromACs7Decoder_p_tKcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit12ApiErrorCodeO18plannedMaintenanceyA2CmF",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO18plannedMaintenanceyA2CmF",
"moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ApiErrorCode.Type) -> (Swift.String) -> LinkKit.ApiErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ApiErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ApiErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7AccountV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit7AccountV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit12ApiErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7AccountV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit7AccountV2eeoiySbAC_ACtFZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit12ApiErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO6stringACSS_tcfc",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAccount",
- "printedName": "LinkKit.PLKAccount",
- "usr": "c:objc(cs)PLKAccount"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV6toObjCSo10PLKAccountCvp",
- "mangledName": "$s7LinkKit7AccountV6toObjCSo10PLKAccountCvp",
+ "usr": "s:7LinkKit12ApiErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
"accessors": [
{
"kind": "Accessor",
@@ -20938,79 +19959,42 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAccount",
- "printedName": "LinkKit.PLKAccount",
- "usr": "c:objc(cs)PLKAccount"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV6toObjCSo10PLKAccountCvg",
- "mangledName": "$s7LinkKit7AccountV6toObjCSo10PLKAccountCvg",
+ "usr": "s:7LinkKit12ApiErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
- "isFromExtension": true,
"accessorKind": "get"
}
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit7AccountV",
- "mangledName": "$s7LinkKit7AccountV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SuccessMetadata",
- "printedName": "SuccessMetadata",
- "children": [
{
"kind": "Var",
- "name": "institution",
- "printedName": "institution",
+ "name": "internalServerErrorString",
+ "printedName": "internalServerErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvp",
+ "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD6StringSSvpZ",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -21020,92 +20004,99 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvg",
+ "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD6StringSSvgZ",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "plannedMaintenanceString",
+ "printedName": "plannedMaintenanceString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvpZ",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvs",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvs",
+ "usr": "s:7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvgZ",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvM",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "accounts",
- "printedName": "accounts",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Account]",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKApiErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
+ "name": "PLKApiErrorCode",
+ "printedName": "LinkKit.PLKApiErrorCode",
+ "usr": "c:@E@PLKApiErrorCode"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvp",
+ "usr": "s:7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvp",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -21114,99 +20105,151 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Account]",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKApiErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
+ "name": "PLKApiErrorCode",
+ "printedName": "LinkKit.PLKApiErrorCode",
+ "usr": "c:@E@PLKApiErrorCode"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvg",
+ "usr": "s:7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvg",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvg",
"moduleName": "LinkKit",
- "implicit": true,
+ "isFromExtension": true,
"accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Account]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvs",
- "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvM",
- "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit12ApiErrorCodeO",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ComponentPaneRenderable",
+ "printedName": "ComponentPaneRenderable",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "renderComponentPane",
+ "printedName": "renderComponentPane()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit23ComponentPaneRenderableP06rendercD0AA0cD9ViewModelOyF",
+ "mangledName": "$s7LinkKit23ComponentPaneRenderableP06rendercD0AA0cD9ViewModelOyF",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.ComponentPaneRenderable>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit23ComponentPaneRenderableP",
+ "mangledName": "$s7LinkKit23ComponentPaneRenderableP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PaneFactory",
+ "printedName": "PaneFactory",
+ "children": [
{
"kind": "Var",
- "name": "linkSessionID",
- "printedName": "linkSessionID",
+ "name": "log",
+ "printedName": "log",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvp",
+ "usr": "s:7LinkKit11PaneFactoryV3log3LogAEVvp",
+ "mangledName": "$s7LinkKit11PaneFactoryV3log3LogAEVvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasStorage",
"AccessControl",
"RawDocComment"
],
+ "fixedbinaryorder": 0,
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -21216,541 +20259,214 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvg",
+ "usr": "s:7LinkKit11PaneFactoryV3log3LogAEVvg",
+ "mangledName": "$s7LinkKit11PaneFactoryV3log3LogAEVvg",
"moduleName": "LinkKit",
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "paneViewController",
+ "printedName": "paneViewController(with:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvs",
- "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvM",
- "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "PaneViewModel",
+ "printedName": "Workflow.PaneViewModel",
+ "usr": "s:8Workflow13PaneViewModelO"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit11PaneFactoryV18paneViewController4withSo06UIViewG0C8Workflow0cF5ModelO_tF",
+ "mangledName": "$s7LinkKit11PaneFactoryV18paneViewController4withSo06UIViewG0C8Workflow0cF5ModelO_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "metadataJSON",
- "printedName": "metadataJSON",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(log:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "PaneFactory",
+ "printedName": "LinkKit.PaneFactory",
+ "usr": "s:7LinkKit11PaneFactoryV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit11PaneFactoryV3logAC3LogAEV_tcfc",
+ "mangledName": "$s7LinkKit11PaneFactoryV3logAC3LogAEV_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit11PaneFactoryV",
+ "mangledName": "$s7LinkKit11PaneFactoryV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ExitStatus",
+ "printedName": "ExitStatus",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "requiresQuestions",
+ "printedName": "requiresQuestions",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit10ExitStatusO17requiresQuestionsyA2CmF",
+ "mangledName": "$s7LinkKit10ExitStatusO17requiresQuestionsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "requiresSelections",
+ "printedName": "requiresSelections",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitStatus.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit10ExitStatusO18requiresSelectionsyA2CmF",
+ "mangledName": "$s7LinkKit10ExitStatusO18requiresSelectionsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "requiresCode",
+ "printedName": "requiresCode",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitStatus.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvs",
- "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvM",
- "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(institution:accounts:linkSessionID:metadataJSON:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Account]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit15SuccessMetadataV11institution8accounts13linkSessionID12metadataJSONAcA11InstitutionV_SayAA7AccountVGS2SSgtcfc",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institution8accounts13linkSessionID12metadataJSONAcA11InstitutionV_SayAA7AccountVGS2SSgtcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit15SuccessMetadataV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit15SuccessMetadataV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SuccessMetadataV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit15SuccessMetadataV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "from",
- "printedName": "from(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Metadata",
- "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult.Metadata",
- "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV8MetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SuccessMetadataV4fromyAC13WorkflowProto0a1_F21_Primitives_SDKResultV0D0V_SSSgtFZ",
- "mangledName": "$s7LinkKit15SuccessMetadataV4fromyAC13WorkflowProto0a1_F21_Primitives_SDKResultV0D0V_SSSgtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SuccessMetadataV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit15SuccessMetadataV2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKSuccessMetadata",
- "printedName": "LinkKit.PLKSuccessMetadata",
- "usr": "c:objc(cs)PLKSuccessMetadata"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKSuccessMetadata",
- "printedName": "LinkKit.PLKSuccessMetadata",
- "usr": "c:objc(cs)PLKSuccessMetadata"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit15SuccessMetadataV",
- "mangledName": "$s7LinkKit15SuccessMetadataV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ExitStatus",
- "printedName": "ExitStatus",
- "children": [
- {
- "kind": "Var",
- "name": "requiresQuestions",
- "printedName": "requiresQuestions",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit10ExitStatusO17requiresQuestionsyA2CmF",
- "mangledName": "$s7LinkKit10ExitStatusO17requiresQuestionsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "requiresSelections",
- "printedName": "requiresSelections",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit10ExitStatusO18requiresSelectionsyA2CmF",
- "mangledName": "$s7LinkKit10ExitStatusO18requiresSelectionsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "requiresCode",
- "printedName": "requiresCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ]
+ ]
}
]
}
@@ -22301,28 +21017,44 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "ExitError",
- "printedName": "ExitError",
+ "name": "EventMetadata",
+ "printedName": "EventMetadata",
"children": [
{
"kind": "Var",
- "name": "errorCode",
- "printedName": "errorCode",
+ "name": "accountNumberMask",
+ "printedName": "accountNumberMask",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovp",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovp",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -22336,14 +21068,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovg",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovg",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22360,14 +21100,22 @@
},
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovs",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovs",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -22384,8 +21132,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0OvM",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0OvM",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -22394,21 +21142,30 @@
},
{
"kind": "Var",
- "name": "errorMessage",
- "printedName": "errorMessage",
+ "name": "errorCode",
+ "printedName": "errorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvp",
- "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvp",
+ "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -22422,14 +21179,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvg",
- "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvg",
+ "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22446,14 +21211,22 @@
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvs",
- "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvs",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -22470,8 +21243,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvM",
- "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvM",
+ "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -22480,8 +21253,8 @@
},
{
"kind": "Var",
- "name": "displayMessage",
- "printedName": "displayMessage",
+ "name": "errorMessage",
+ "printedName": "errorMessage",
"children": [
{
"kind": "TypeNominal",
@@ -22499,8 +21272,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvp",
- "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -22531,8 +21304,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvg",
- "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22563,8 +21336,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvs",
- "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -22581,8 +21354,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvM",
- "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -22591,32 +21364,33 @@
},
{
"kind": "Var",
- "name": "errorJSON",
- "printedName": "errorJSON",
+ "name": "exitStatus",
+ "printedName": "exitStatus",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.ExitStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvp",
- "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"hasStorage": true,
"accessors": [
@@ -22628,21 +21402,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.ExitStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvg",
- "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22660,21 +21434,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.ExitStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvs",
- "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -22691,8 +21465,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvM",
- "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -22700,28 +21474,10 @@
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(errorCode:errorMessage:displayMessage:errorJSON:)",
+ "kind": "Var",
+ "name": "institutionID",
+ "printedName": "institutionID",
"children": [
- {
- "kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
{
"kind": "TypeNominal",
"name": "Optional",
@@ -22734,223 +21490,126 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
"usr": "s:Sq"
- },
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9ExitErrorV9errorCode0E7Message07displayG00E4JSONAcA0cdF0O_S2SSgAJtcfc",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCode0E7Message07displayG00E4JSONAcA0cdF0O_S2SSgAJtcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9ExitErrorV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit9ExitErrorV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ExitErrorV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit9ExitErrorV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
- {
- "kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ExitErrorV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit9ExitErrorV2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV6toObjCSo7NSErrorCvp",
- "mangledName": "$s7LinkKit9ExitErrorV6toObjCSo7NSErrorCvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV6toObjCSo7NSErrorCvg",
- "mangledName": "$s7LinkKit9ExitErrorV6toObjCSo7NSErrorCvg",
+ "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvM",
"moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ "implicit": true,
+ "accessorKind": "_modify"
}
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit9ExitErrorV",
- "mangledName": "$s7LinkKit9ExitErrorV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Institution",
- "printedName": "Institution",
- "children": [
{
"kind": "Var",
- "name": "id",
- "printedName": "id",
+ "name": "institutionName",
+ "printedName": "institutionName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11InstitutionV2idSSvp",
- "mangledName": "$s7LinkKit11InstitutionV2idSSvp",
+ "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -22964,14 +21623,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV2idSSvg",
- "mangledName": "$s7LinkKit11InstitutionV2idSSvg",
+ "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22988,14 +21655,22 @@
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV2idSSvs",
- "mangledName": "$s7LinkKit11InstitutionV2idSSvs",
+ "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23012,8 +21687,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV2idSSvM",
- "mangledName": "$s7LinkKit11InstitutionV2idSSvM",
+ "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23022,21 +21697,30 @@
},
{
"kind": "Var",
- "name": "name",
- "printedName": "name",
+ "name": "institutionSearchQuery",
+ "printedName": "institutionSearchQuery",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11InstitutionV4nameSSvp",
- "mangledName": "$s7LinkKit11InstitutionV4nameSSvp",
+ "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -23050,14 +21734,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV4nameSSvg",
- "mangledName": "$s7LinkKit11InstitutionV4nameSSvg",
+ "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23074,14 +21766,22 @@
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV4nameSSvs",
- "mangledName": "$s7LinkKit11InstitutionV4nameSSvs",
+ "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23098,8 +21798,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV4nameSSvM",
- "mangledName": "$s7LinkKit11InstitutionV4nameSSvM",
+ "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23107,136 +21807,36 @@
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(id:name:)",
+ "kind": "Var",
+ "name": "isUpdateMode",
+ "printedName": "isUpdateMode",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit11InstitutionV2id4nameACSS_SStcfc",
- "mangledName": "$s7LinkKit11InstitutionV2id4nameACSS_SStcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit11InstitutionV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit11InstitutionV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11InstitutionV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit11InstitutionV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- },
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11InstitutionV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit11InstitutionV2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInstitution",
- "printedName": "LinkKit.PLKInstitution",
- "usr": "c:objc(cs)PLKInstitution"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvp",
- "mangledName": "$s7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvp",
+ "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -23245,81 +21845,101 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKInstitution",
- "printedName": "LinkKit.PLKInstitution",
- "usr": "c:objc(cs)PLKInstitution"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvg",
- "mangledName": "$s7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvg",
+ "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvg",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "implicit": true,
"accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit11InstitutionV",
- "mangledName": "$s7LinkKit11InstitutionV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
},
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ExitMetadata",
- "printedName": "ExitMetadata",
- "children": [
{
"kind": "Var",
- "name": "status",
- "printedName": "status",
+ "name": "matchReason",
+ "printedName": "matchReason",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvp",
+ "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23337,21 +21957,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvg",
+ "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23369,21 +21989,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvs",
+ "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23400,8 +22020,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvM",
+ "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23410,27 +22030,113 @@
},
{
"kind": "Var",
- "name": "institution",
- "printedName": "institution",
+ "name": "linkSessionID",
+ "printedName": "linkSessionID",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvp",
+ "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvg",
+ "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvs",
+ "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvM",
+ "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mfaType",
+ "printedName": "mfaType",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.Institution?",
+ "printedName": "LinkKit.MFAType?",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvp",
+ "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23448,21 +22154,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.Institution?",
+ "printedName": "LinkKit.MFAType?",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvg",
+ "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23480,21 +22186,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.Institution?",
+ "printedName": "LinkKit.MFAType?",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvs",
+ "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23511,8 +22217,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvM",
+ "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23521,8 +22227,8 @@
},
{
"kind": "Var",
- "name": "linkSessionID",
- "printedName": "linkSessionID",
+ "name": "requestID",
+ "printedName": "requestID",
"children": [
{
"kind": "TypeNominal",
@@ -23540,8 +22246,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23572,8 +22278,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23604,8 +22310,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23622,8 +22328,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23632,8 +22338,8 @@
},
{
"kind": "Var",
- "name": "requestID",
- "printedName": "requestID",
+ "name": "routingNumber",
+ "printedName": "routingNumber",
"children": [
{
"kind": "TypeNominal",
@@ -23651,8 +22357,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23683,8 +22389,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23715,8 +22421,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23733,8 +22439,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23743,8 +22449,8 @@
},
{
"kind": "Var",
- "name": "metadataJSON",
- "printedName": "metadataJSON",
+ "name": "selection",
+ "printedName": "selection",
"children": [
{
"kind": "TypeNominal",
@@ -23762,8 +22468,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23794,8 +22500,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23826,8 +22532,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23844,8 +22550,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23853,41 +22559,349 @@
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(status:institution:linkSessionID:requestID:metadataJSON:)",
+ "kind": "Var",
+ "name": "timestamp",
+ "printedName": "timestamp",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
- },
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvp",
+ "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvg",
+ "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.Institution?",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvs",
+ "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvM",
+ "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "viewName",
+ "printedName": "viewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ViewName?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ViewName?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ViewName?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "metadataJSON",
+ "printedName": "metadataJSON",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(accountNumberMask:errorCode:errorMessage:exitStatus:institutionID:institutionName:institutionSearchQuery:isUpdateMode:matchReason:linkSessionID:mfaType:requestID:routingNumber:selection:timestamp:viewName:metadataJSON:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
],
"hasDefaultArg": true,
@@ -23908,6 +22922,21 @@
"hasDefaultArg": true,
"usr": "s:Sq"
},
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
"name": "Optional",
@@ -23937,30 +22966,158 @@
],
"hasDefaultArg": true,
"usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit12ExitMetadataV6status11institution13linkSessionID07requestI012metadataJSONAcA0C6StatusOSg_AA11InstitutionVSgSSSgA2Otcfc",
- "mangledName": "$s7LinkKit12ExitMetadataV6status11institution13linkSessionID07requestI012metadataJSONAcA0C6StatusOSg_AA11InstitutionVSgSSSgA2Otcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
+ },
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.MFAType?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ViewName?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit12ExitMetadataVACycfc",
- "mangledName": "$s7LinkKit12ExitMetadataVACycfc",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMask9errorCode0H7Message10exitStatus13institutionID0M4Name0M11SearchQuery12isUpdateMode11matchReason011linkSessionN07mfaType07requestN007routingF09selection9timestamp04viewO012metadataJSONACSSSg_AA09ExitErrorI0OSgAuA04ExitL0OSgA5USSAA7MFATypeOSgA3U10Foundation4DateVAA04ViewO0OSgAUtcfc",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMask9errorCode0H7Message10exitStatus13institutionID0M4Name0M11SearchQuery12isUpdateMode11matchReason011linkSessionN07mfaType07requestN007routingF09selection9timestamp04viewO012metadataJSONACSSSg_AA09ExitErrorI0OSgAuA04ExitL0OSgA5USSAA7MFATypeOSgA3U10Foundation4DateVAA04ViewO0OSgAUtcfc",
"moduleName": "LinkKit",
"implicit": true,
"init_kind": "Designated"
@@ -23972,9 +23129,9 @@
"children": [
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
},
{
"kind": "TypeNominal",
@@ -23984,8 +23141,8 @@
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit12ExitMetadataV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit12ExitMetadataV4fromACs7Decoder_p_tKcfc",
+ "usr": "s:7LinkKit13EventMetadataV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit13EventMetadataV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
"implicit": true,
"throwing": true,
@@ -24009,8 +23166,8 @@
}
],
"declKind": "Func",
- "usr": "s:7LinkKit12ExitMetadataV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit12ExitMetadataV6encode2toys7Encoder_p_tKF",
+ "usr": "s:7LinkKit13EventMetadataV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit13EventMetadataV6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"implicit": true,
"throwing": true,
@@ -24029,20 +23186,20 @@
},
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
},
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit12ExitMetadataV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit12ExitMetadataV2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit13EventMetadataV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit13EventMetadataV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
"isFromExtension": true,
@@ -24055,14 +23212,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKExitMetadata",
- "printedName": "LinkKit.PLKExitMetadata",
- "usr": "c:objc(cs)PLKExitMetadata"
+ "name": "PLKEventMetadata",
+ "printedName": "LinkKit.PLKEventMetadata",
+ "usr": "c:objc(cs)PLKEventMetadata"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvp",
- "mangledName": "$s7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvp",
+ "usr": "s:7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvp",
+ "mangledName": "$s7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvp",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessors": [
@@ -24073,14 +23230,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKExitMetadata",
- "printedName": "LinkKit.PLKExitMetadata",
- "usr": "c:objc(cs)PLKExitMetadata"
+ "name": "PLKEventMetadata",
+ "printedName": "LinkKit.PLKEventMetadata",
+ "usr": "c:objc(cs)PLKEventMetadata"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvg",
- "mangledName": "$s7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvg",
+ "usr": "s:7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvg",
+ "mangledName": "$s7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
@@ -24089,8 +23246,8 @@
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit12ExitMetadataV",
- "mangledName": "$s7LinkKit12ExitMetadataV",
+ "usr": "s:7LinkKit13EventMetadataV",
+ "mangledName": "$s7LinkKit13EventMetadataV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
@@ -24120,237 +23277,335 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "Anomalies",
+ "printedName": "Anomalies",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "EventName",
- "printedName": "EventName",
+ "name": "Plaid",
+ "printedName": "Plaid",
"children": [
{
- "kind": "Var",
- "name": "bankIncomeInsightsCompleted",
- "printedName": "bankIncomeInsightsCompleted",
+ "kind": "TypeDecl",
+ "name": "CreateError",
+ "printedName": "CreateError",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "configurationError",
+ "printedName": "configurationError",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.Plaid.CreateError.Type) -> (LinkKit.ConfigurationError) -> LinkKit.Plaid.CreateError",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError) -> LinkKit.Plaid.CreateError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CreateError",
+ "printedName": "LinkKit.Plaid.CreateError",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Metatype",
+ "printedName": "LinkKit.Plaid.CreateError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CreateError",
+ "printedName": "LinkKit.Plaid.CreateError",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO"
+ }
+ ]
}
]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO013configurationE0yAeA013ConfigurationE0OcAEmF",
+ "mangledName": "$s7LinkKit5PlaidV11CreateErrorO013configurationE0yAeA013ConfigurationE0OcAEmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO27bankIncomeInsightsCompletedyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO27bankIncomeInsightsCompletedyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "closeOAuth",
- "printedName": "closeOAuth",
- "children": [
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvp",
+ "mangledName": "$s7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvg",
+ "mangledName": "$s7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO10closeOAuthyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO10closeOAuthyA2CmF",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO",
+ "mangledName": "$s7LinkKit5PlaidV11CreateErrorO",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
]
},
{
- "kind": "Var",
- "name": "error",
- "printedName": "error",
+ "kind": "Function",
+ "name": "create",
+ "printedName": "create(_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Result",
+ "printedName": "Swift.Result",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "CreateError",
+ "printedName": "LinkKit.Plaid.CreateError",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO"
}
- ]
+ ],
+ "usr": "s:s6ResultO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO5erroryA2CmF",
- "mangledName": "$s7LinkKit9EventNameO5erroryA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A18TokenConfigurationVFZ",
+ "mangledName": "$s7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A18TokenConfigurationVFZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "exit",
- "printedName": "exit",
+ "name": "version",
+ "printedName": "version",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO4exityA2CmF",
- "mangledName": "$s7LinkKit9EventNameO4exityA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit5PlaidV7versionSSvpZ",
+ "mangledName": "$s7LinkKit5PlaidV7versionSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "failOAuth",
- "printedName": "failOAuth",
- "children": [
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit5PlaidV7versionSSvgZ",
+ "mangledName": "$s7LinkKit5PlaidV7versionSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO9failOAuthyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO9failOAuthyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Plaid",
+ "printedName": "LinkKit.Plaid",
+ "usr": "s:7LinkKit5PlaidV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit5PlaidVACycfc",
+ "mangledName": "$s7LinkKit5PlaidVACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit5PlaidV",
+ "mangledName": "$s7LinkKit5PlaidV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "AuthErrorCode",
+ "printedName": "AuthErrorCode",
+ "children": [
{
"kind": "Var",
- "name": "handoff",
- "printedName": "handoff",
+ "name": "productNotReady",
+ "printedName": "productNotReady",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.AuthErrorCode.Type) -> LinkKit.AuthErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.AuthErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
}
]
}
@@ -24358,8 +23613,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO7handoffyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO7handoffyA2CmF",
+ "usr": "s:7LinkKit13AuthErrorCodeO15productNotReadyyA2CmF",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO15productNotReadyyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -24367,30 +23622,30 @@
},
{
"kind": "Var",
- "name": "identityVerificationStartStep",
- "printedName": "identityVerificationStartStep",
+ "name": "verificationExpired",
+ "printedName": "verificationExpired",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.AuthErrorCode.Type) -> LinkKit.AuthErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.AuthErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
}
]
}
@@ -24398,8 +23653,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO29identityVerificationStartStepyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO29identityVerificationStartStepyA2CmF",
+ "usr": "s:7LinkKit13AuthErrorCodeO19verificationExpiredyA2CmF",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO19verificationExpiredyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -24407,30 +23662,43 @@
},
{
"kind": "Var",
- "name": "identityVerificationPassStep",
- "printedName": "identityVerificationPassStep",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.AuthErrorCode.Type) -> (Swift.String) -> LinkKit.AuthErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.AuthErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.AuthErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
}
]
}
@@ -24438,1159 +23706,1464 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO28identityVerificationPassStepyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO28identityVerificationPassStepyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "usr": "s:7LinkKit13AuthErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
- "kind": "Var",
- "name": "identityVerificationFailStep",
- "printedName": "identityVerificationFailStep",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO28identityVerificationFailStepyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO28identityVerificationFailStepyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13AuthErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO6stringACSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "identityVerificationPendingReviewStep",
- "printedName": "identityVerificationPendingReviewStep",
+ "name": "description",
+ "printedName": "description",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO37identityVerificationPendingReviewStepyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO37identityVerificationPendingReviewStepyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13AuthErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identityVerificationCreateSession",
- "printedName": "identityVerificationCreateSession",
- "children": [
+ "AccessControl"
+ ],
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13AuthErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO33identityVerificationCreateSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO33identityVerificationCreateSessionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "identityVerificationResumeSession",
- "printedName": "identityVerificationResumeSession",
+ "name": "productNotReadyString",
+ "printedName": "productNotReadyString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO33identityVerificationResumeSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO33identityVerificationResumeSessionyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13AuthErrorCodeO21productNotReadyStringSSvpZ",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO21productNotReadyStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identityVerificationPassSession",
- "printedName": "identityVerificationPassSession",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13AuthErrorCodeO21productNotReadyStringSSvgZ",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO21productNotReadyStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO31identityVerificationPassSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO31identityVerificationPassSessionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "identityVerificationFailSession",
- "printedName": "identityVerificationFailSession",
+ "name": "verificationExpiredString",
+ "printedName": "verificationExpiredString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO31identityVerificationFailSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO31identityVerificationFailSessionyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvpZ",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identityVerificationPendingReviewSession",
- "printedName": "identityVerificationPendingReviewSession",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvgZ",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO40identityVerificationPendingReviewSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO40identityVerificationPendingReviewSessionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "identityVerificationOpenUI",
- "printedName": "identityVerificationOpenUI",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKAuthErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "PLKAuthErrorCode",
+ "printedName": "LinkKit.PLKAuthErrorCode",
+ "usr": "c:@E@PLKAuthErrorCode"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO26identityVerificationOpenUIyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO26identityVerificationOpenUIyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvp",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identityVerificationResumeUI",
- "printedName": "identityVerificationResumeUI",
- "children": [
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKAuthErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "PLKAuthErrorCode",
+ "printedName": "LinkKit.PLKAuthErrorCode",
+ "usr": "c:@E@PLKAuthErrorCode"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvg",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO28identityVerificationResumeUIyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO28identityVerificationResumeUIyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit13AuthErrorCodeO",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "GithubRelease",
+ "printedName": "GithubRelease",
+ "children": [
{
"kind": "Var",
- "name": "identityVerificationCloseUI",
- "printedName": "identityVerificationCloseUI",
+ "name": "htmlURL",
+ "printedName": "htmlURL",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO27identityVerificationCloseUIyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO27identityVerificationCloseUIyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV7htmlURLSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV7htmlURLSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "matchedSelectInstitution",
- "printedName": "matchedSelectInstitution",
- "children": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV7htmlURLSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV7htmlURLSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO24matchedSelectInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO24matchedSelectInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "matchedSelectVerifyMethod",
- "printedName": "matchedSelectVerifyMethod",
+ "name": "tagName",
+ "printedName": "tagName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV7tagNameSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV7tagNameSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV7tagNameSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV7tagNameSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO25matchedSelectVerifyMethodyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO25matchedSelectVerifyMethodyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "open",
- "printedName": "open",
+ "name": "name",
+ "printedName": "name",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV4nameSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV4nameSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 2,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV4nameSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV4nameSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO4openyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO4openyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "openMyPlaid",
- "printedName": "openMyPlaid",
+ "name": "draft",
+ "printedName": "draft",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV5draftSbvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV5draftSbvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 3,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV5draftSbvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV5draftSbvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO11openMyPlaidyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO11openMyPlaidyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "openOAuth",
- "printedName": "openOAuth",
+ "name": "prerelease",
+ "printedName": "prerelease",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV10prereleaseSbvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV10prereleaseSbvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 4,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV10prereleaseSbvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV10prereleaseSbvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO9openOAuthyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO9openOAuthyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "searchInstitution",
- "printedName": "searchInstitution",
+ "name": "publishedAt",
+ "printedName": "publishedAt",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 5,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO17searchInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO17searchInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "selectDegradedInstitution",
- "printedName": "selectDegradedInstitution",
+ "name": "body",
+ "printedName": "body",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV4bodySSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV4bodySSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 6,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV4bodySSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV4bodySSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO25selectDegradedInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO25selectDegradedInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "selectFilteredInstitution",
- "printedName": "selectFilteredInstitution",
+ "name": "semanticVersion",
+ "printedName": "semanticVersion",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.SemanticVersion?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvp",
+ "moduleName": "LinkKit",
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "name": "Optional",
+ "printedName": "LinkKit.SemanticVersion?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO25selectFilteredInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO25selectFilteredInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "selectDownInstitution",
- "printedName": "selectDownInstitution",
+ "kind": "TypeDecl",
+ "name": "CodingKeys",
+ "printedName": "CodingKeys",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "htmlURL",
+ "printedName": "htmlURL",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO21selectDownInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO21selectDownInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectInstitution",
- "printedName": "selectInstitution",
- "children": [
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO7htmlURLyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO7htmlURLyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "tagName",
+ "printedName": "tagName",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO17selectInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO17selectInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectBrand",
- "printedName": "selectBrand",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO7tagNameyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO7tagNameyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "name",
+ "printedName": "name",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO11selectBrandyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO11selectBrandyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectAuthType",
- "printedName": "selectAuthType",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO4nameyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO4nameyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 2
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "draft",
+ "printedName": "draft",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO14selectAuthTypeyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO14selectAuthTypeyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitAccountNumber",
- "printedName": "submitAccountNumber",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO5draftyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO5draftyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 3
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "prerelease",
+ "printedName": "prerelease",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO19submitAccountNumberyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO19submitAccountNumberyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitDocuments",
- "printedName": "submitDocuments",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO10prereleaseyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO10prereleaseyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 4
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "publishedAt",
+ "printedName": "publishedAt",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO15submitDocumentsyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO15submitDocumentsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitDocumentsSuccess",
- "printedName": "submitDocumentsSuccess",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11publishedAtyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11publishedAtyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 5
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "body",
+ "printedName": "body",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO22submitDocumentsSuccessyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO22submitDocumentsSuccessyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitDocumentsError",
- "printedName": "submitDocumentsError",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO4bodyyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO4bodyyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 6
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "name": "Optional",
+ "printedName": "LinkKit.GithubRelease.CodingKeys?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO20submitDocumentsErroryA2CmF",
- "mangledName": "$s7LinkKit9EventNameO20submitDocumentsErroryA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitRoutingNumber",
- "printedName": "submitRoutingNumber",
- "children": [
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueAESgSS_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "rawValue",
+ "printedName": "rawValue",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO19submitRoutingNumberyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO19submitRoutingNumberyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitCredentials",
- "printedName": "submitCredentials",
- "children": [
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "stringValue",
+ "printedName": "stringValue",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(stringValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.GithubRelease.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueAESgSS_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "intValue",
+ "printedName": "intValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
- ]
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(intValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.GithubRelease.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueAESgSi_tcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueAESgSi_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO17submitCredentialsyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO17submitCredentialsyA2CmF",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
+ "enumRawTypeName": "String",
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CodingKey",
+ "printedName": "CodingKey",
+ "usr": "s:s9CodingKeyP",
+ "mangledName": "$ss9CodingKeyP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(htmlURL:tagName:name:draft:prerelease:publishedAt:body:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GithubRelease",
+ "printedName": "LinkKit.GithubRelease",
+ "usr": "s:7LinkKit13GithubReleaseV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV7htmlURL7tagName4name5draft10prerelease11publishedAt4bodyACSS_S2SS2b10Foundation4DateVSStcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV7htmlURL7tagName4name5draft10prerelease11publishedAt4bodyACSS_S2SS2b10Foundation4DateVSStcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GithubRelease",
+ "printedName": "LinkKit.GithubRelease",
+ "usr": "s:7LinkKit13GithubReleaseV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit13GithubReleaseV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit13GithubReleaseV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit13GithubReleaseV",
+ "mangledName": "$s7LinkKit13GithubReleaseV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Environment",
+ "printedName": "Environment",
+ "children": [
{
"kind": "Var",
- "name": "submitMFA",
- "printedName": "submitMFA",
+ "name": "production",
+ "printedName": "production",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.Environment.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
]
}
@@ -25598,8 +25171,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO9submitMFAyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO9submitMFAyA2CmF",
+ "usr": "s:7LinkKit11EnvironmentO10productionyA2CmF",
+ "mangledName": "$s7LinkKit11EnvironmentO10productionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -25607,30 +25180,30 @@
},
{
"kind": "Var",
- "name": "transitionView",
- "printedName": "transitionView",
+ "name": "development",
+ "printedName": "development",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.Environment.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
]
}
@@ -25638,8 +25211,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO14transitionViewyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO14transitionViewyA2CmF",
+ "usr": "s:7LinkKit11EnvironmentO11developmentyA2CmF",
+ "mangledName": "$s7LinkKit11EnvironmentO11developmentyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -25647,30 +25220,30 @@
},
{
"kind": "Var",
- "name": "viewDataTypes",
- "printedName": "viewDataTypes",
+ "name": "sandbox",
+ "printedName": "sandbox",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.Environment.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
]
}
@@ -25678,8 +25251,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO13viewDataTypesyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO13viewDataTypesyA2CmF",
+ "usr": "s:7LinkKit11EnvironmentO7sandboxyA2CmF",
+ "mangledName": "$s7LinkKit11EnvironmentO7sandboxyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -25687,291 +25260,133 @@
},
{
"kind": "Var",
- "name": "submitPhone",
- "printedName": "submitPhone",
+ "name": "baseURL",
+ "printedName": "baseURL",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO11submitPhoneyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO11submitPhoneyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvp",
+ "mangledName": "$s7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "skipSubmitPhone",
- "printedName": "skipSubmitPhone",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
- }
+ "AccessControl"
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO15skipSubmitPhoneyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO15skipSubmitPhoneyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "verifyPhone",
- "printedName": "verifyPhone",
- "children": [
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvg",
+ "mangledName": "$s7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO11verifyPhoneyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO11verifyPhoneyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "connectNewInstitution",
- "printedName": "connectNewInstitution",
+ "name": "description",
+ "printedName": "description",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO21connectNewInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO21connectNewInstitutionyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit11EnvironmentO11descriptionSSvp",
+ "mangledName": "$s7LinkKit11EnvironmentO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
+ "AccessControl"
+ ],
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> (Swift.String) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit11EnvironmentO11descriptionSSvg",
+ "mangledName": "$s7LinkKit11EnvironmentO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit9EventNameO7unknownyACSScACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
"kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9EventNameO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit9EventNameO4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9EventNameO8rawValueACSS_tcfc",
- "mangledName": "$s7LinkKit9EventNameO8rawValueACSS_tcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit11EnvironmentO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit11EnvironmentO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "static": true,
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9EventNameO11descriptionSSvp",
- "mangledName": "$s7LinkKit9EventNameO11descriptionSSvp",
+ "usr": "s:7LinkKit11EnvironmentO9hashValueSivp",
+ "mangledName": "$s7LinkKit11EnvironmentO9hashValueSivp",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -25980,23 +25395,24 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9EventNameO11descriptionSSvg",
- "mangledName": "$s7LinkKit9EventNameO11descriptionSSvg",
+ "usr": "s:7LinkKit11EnvironmentO9hashValueSivg",
+ "mangledName": "$s7LinkKit11EnvironmentO9hashValueSivg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
},
{
"kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "name": "hash",
+ "printedName": "hash(into:)",
"children": [
{
"kind": "TypeNominal",
@@ -26005,69 +25421,38 @@
},
{
"kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9EventNameO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit9EventNameO6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit9EventNameO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit9EventNameO2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit11EnvironmentO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit11EnvironmentO4hash4intoys6HasherVz_tF",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
+ "implicit": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "valueForQueryString",
+ "printedName": "valueForQueryString",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKEventName",
- "printedName": "LinkKit.PLKEventName",
- "usr": "c:objc(cs)PLKEventName"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvp",
- "mangledName": "$s7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvp",
+ "usr": "s:7LinkKit11EnvironmentO19valueForQueryStringSSvp",
+ "mangledName": "$s7LinkKit11EnvironmentO19valueForQueryStringSSvp",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
"isFromExtension": true,
"accessors": [
{
@@ -26077,24 +25462,52 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKEventName",
- "printedName": "LinkKit.PLKEventName",
- "usr": "c:objc(cs)PLKEventName"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvg",
- "mangledName": "$s7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvg",
+ "usr": "s:7LinkKit11EnvironmentO19valueForQueryStringSSvg",
+ "mangledName": "$s7LinkKit11EnvironmentO19valueForQueryStringSSvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
}
]
+ },
+ {
+ "kind": "Function",
+ "name": "fuzzyMatches",
+ "printedName": "fuzzyMatches(linkToken:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit11EnvironmentO12fuzzyMatches9linkTokenSbSS_tF",
+ "mangledName": "$s7LinkKit11EnvironmentO12fuzzyMatches9linkTokenSbSS_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit9EventNameO",
- "mangledName": "$s7LinkKit9EventNameO",
+ "usr": "s:7LinkKit11EnvironmentO",
+ "mangledName": "$s7LinkKit11EnvironmentO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
@@ -26103,545 +25516,829 @@
"conformances": [
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
"kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
},
{
"kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "ViewName",
- "printedName": "ViewName",
+ "name": "ExitError",
+ "printedName": "ExitError",
"children": [
{
"kind": "Var",
- "name": "acceptTOS",
- "printedName": "acceptTOS",
+ "name": "errorCode",
+ "printedName": "errorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9acceptTOSyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9acceptTOSyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovp",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "connected",
- "printedName": "connected",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9connectedyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9connectedyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "consent",
- "printedName": "consent",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovg",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovs",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0OvM",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0OvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO7consentyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO7consentyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "credential",
- "printedName": "credential",
+ "name": "errorMessage",
+ "printedName": "errorMessage",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO10credentialyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO10credentialyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvp",
+ "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "dataTransparency",
- "printedName": "dataTransparency",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvg",
+ "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvs",
+ "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvM",
+ "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO16dataTransparencyyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO16dataTransparencyyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "dataTransparencyConsent",
- "printedName": "dataTransparencyConsent",
+ "name": "displayMessage",
+ "printedName": "displayMessage",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO23dataTransparencyConsentyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO23dataTransparencyConsentyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvp",
+ "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "documentaryVerification",
- "printedName": "documentaryVerification",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO23documentaryVerificationyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO23documentaryVerificationyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "error",
- "printedName": "error",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvg",
+ "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvs",
+ "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvM",
+ "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO5erroryA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO5erroryA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "exit",
- "printedName": "exit",
+ "name": "errorJSON",
+ "printedName": "errorJSON",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO4exityA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO4exityA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvp",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "kycCheck",
- "printedName": "kycCheck",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO8kycCheckyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO8kycCheckyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "loading",
- "printedName": "loading",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvg",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvs",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvM",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO7loadingyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO7loadingyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "matchedConsent",
- "printedName": "matchedConsent",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(errorCode:errorMessage:displayMessage:errorJSON:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO14matchedConsentyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO14matchedConsentyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9ExitErrorV9errorCode0E7Message07displayG00E4JSONAcA0cdF0O_S2SSgAJtcfc",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCode0E7Message07displayG00E4JSONAcA0cdF0O_S2SSgAJtcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9ExitErrorV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit9ExitErrorV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ExitErrorV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit9ExitErrorV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ExitErrorV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit9ExitErrorV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV6toObjCSo7NSErrorCvp",
+ "mangledName": "$s7LinkKit9ExitErrorV6toObjCSo7NSErrorCvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV6toObjCSo7NSErrorCvg",
+ "mangledName": "$s7LinkKit9ExitErrorV6toObjCSo7NSErrorCvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit9ExitErrorV",
+ "mangledName": "$s7LinkKit9ExitErrorV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkHTTPServiceUserAgentProvider",
+ "printedName": "LinkHTTPServiceUserAgentProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "userAgent",
+ "printedName": "userAgent",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvp",
+ "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvg",
+ "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent",
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LinkHTTPServiceUserAgentProvider",
+ "printedName": "LinkKit.LinkHTTPServiceUserAgentProvider",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderCACycfc",
+ "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderCACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC",
+ "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "HTTPServiceUserAgentProviding",
+ "printedName": "HTTPServiceUserAgentProviding",
+ "usr": "s:7AppCore29HTTPServiceUserAgentProvidingP",
+ "mangledName": "$s7AppCore29HTTPServiceUserAgentProvidingP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "MFAType",
+ "printedName": "MFAType",
+ "children": [
{
"kind": "Var",
- "name": "matchedCredential",
- "printedName": "matchedCredential",
+ "name": "code",
+ "printedName": "code",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "printedName": "LinkKit.MFAType.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
]
}
@@ -26649,8 +26346,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO17matchedCredentialyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO17matchedCredentialyA2CmF",
+ "usr": "s:7LinkKit7MFATypeO4codeyA2CmF",
+ "mangledName": "$s7LinkKit7MFATypeO4codeyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -26658,30 +26355,30 @@
},
{
"kind": "Var",
- "name": "matchedMFA",
- "printedName": "matchedMFA",
+ "name": "device",
+ "printedName": "device",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "printedName": "LinkKit.MFAType.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
]
}
@@ -26689,8 +26386,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO10matchedMFAyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO10matchedMFAyA2CmF",
+ "usr": "s:7LinkKit7MFATypeO6deviceyA2CmF",
+ "mangledName": "$s7LinkKit7MFATypeO6deviceyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -26698,30 +26395,30 @@
},
{
"kind": "Var",
- "name": "mfa",
- "printedName": "mfa",
+ "name": "questions",
+ "printedName": "questions",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "printedName": "LinkKit.MFAType.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
]
}
@@ -26729,8 +26426,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO3mfayA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO3mfayA2CmF",
+ "usr": "s:7LinkKit7MFATypeO9questionsyA2CmF",
+ "mangledName": "$s7LinkKit7MFATypeO9questionsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -26738,30 +26435,30 @@
},
{
"kind": "Var",
- "name": "numbers",
- "printedName": "numbers",
+ "name": "selections",
+ "printedName": "selections",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "printedName": "LinkKit.MFAType.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
]
}
@@ -26769,1069 +26466,872 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO7numbersyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO7numbersyA2CmF",
+ "usr": "s:7LinkKit7MFATypeO10selectionsyA2CmF",
+ "mangledName": "$s7LinkKit7MFATypeO10selectionsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
]
},
{
- "kind": "Var",
- "name": "numbersSelectInstitution",
- "printedName": "numbersSelectInstitution",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO24numbersSelectInstitutionyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO24numbersSelectInstitutionyA2CmF",
- "moduleName": "LinkKit"
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit7MFATypeO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit7MFATypeO4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "oauth",
- "printedName": "oauth",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.MFAType?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO5oauthyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO5oauthyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit7MFATypeO8rawValueACSgSS_tcfc",
+ "mangledName": "$s7LinkKit7MFATypeO8rawValueACSgSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "recaptcha",
- "printedName": "recaptcha",
+ "name": "description",
+ "printedName": "description",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9recaptchayA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9recaptchayA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit7MFATypeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "riskCheck",
- "printedName": "riskCheck",
- "children": [
+ "AccessControl"
+ ],
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit7MFATypeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9riskCheckyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9riskCheckyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "screening",
- "printedName": "screening",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9screeningyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9screeningyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7MFATypeO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit7MFATypeO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "selectAccount",
- "printedName": "selectAccount",
+ "name": "codeString",
+ "printedName": "codeString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO13selectAccountyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO13selectAccountyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO10codeStringSSvpZ",
+ "mangledName": "$s7LinkKit7MFATypeO10codeStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectAuthType",
- "printedName": "selectAuthType",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO10codeStringSSvgZ",
+ "mangledName": "$s7LinkKit7MFATypeO10codeStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO14selectAuthTypeyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO14selectAuthTypeyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "submitPhone",
- "printedName": "submitPhone",
+ "name": "deviceString",
+ "printedName": "deviceString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO11submitPhoneyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO11submitPhoneyA2CmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Var",
- "name": "verifyPhone",
- "printedName": "verifyPhone",
- "children": [
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO12deviceStringSSvpZ",
+ "mangledName": "$s7LinkKit7MFATypeO12deviceStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO12deviceStringSSvgZ",
+ "mangledName": "$s7LinkKit7MFATypeO12deviceStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO11verifyPhoneyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO11verifyPhoneyA2CmF",
- "moduleName": "LinkKit"
+ ]
},
{
"kind": "Var",
- "name": "selectSavedInstitution",
- "printedName": "selectSavedInstitution",
+ "name": "questionsString",
+ "printedName": "questionsString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO15questionsStringSSvpZ",
+ "mangledName": "$s7LinkKit7MFATypeO15questionsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO15questionsStringSSvgZ",
+ "mangledName": "$s7LinkKit7MFATypeO15questionsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO22selectSavedInstitutionyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO22selectSavedInstitutionyA2CmF",
- "moduleName": "LinkKit"
+ ]
},
{
"kind": "Var",
- "name": "selectSavedAccount",
- "printedName": "selectSavedAccount",
+ "name": "selectionsString",
+ "printedName": "selectionsString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO18selectSavedAccountyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO18selectSavedAccountyA2CmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Var",
- "name": "selectBrand",
- "printedName": "selectBrand",
- "children": [
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO16selectionsStringSSvpZ",
+ "mangledName": "$s7LinkKit7MFATypeO16selectionsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO16selectionsStringSSvgZ",
+ "mangledName": "$s7LinkKit7MFATypeO16selectionsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO11selectBrandyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO11selectBrandyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "selectInstitution",
- "printedName": "selectInstitution",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO17selectInstitutionyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO17selectInstitutionyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7MFATypeO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit7MFATypeO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "static": true,
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "selfieCheck",
- "printedName": "selfieCheck",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO11selfieCheckyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO11selfieCheckyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO9hashValueSivp",
+ "mangledName": "$s7LinkKit7MFATypeO9hashValueSivp",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "uploadDocuments",
- "printedName": "uploadDocuments",
- "children": [
+ "implicit": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO9hashValueSivg",
+ "mangledName": "$s7LinkKit7MFATypeO9hashValueSivg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO15uploadDocumentsyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO15uploadDocumentsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "submitDocuments",
- "printedName": "submitDocuments",
+ "kind": "Function",
+ "name": "hash",
+ "printedName": "hash(into:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO15submitDocumentsyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO15submitDocumentsyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7MFATypeO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit7MFATypeO4hash4intoys6HasherVz_tF",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "submitDocumentsSuccess",
- "printedName": "submitDocumentsSuccess",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "PLKMFAType",
+ "printedName": "LinkKit.PLKMFAType",
+ "usr": "c:@E@PLKMFAType"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO22submitDocumentsSuccessyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO22submitDocumentsSuccessyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvp",
+ "mangledName": "$s7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitDocumentsError",
- "printedName": "submitDocumentsError",
- "children": [
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "PLKMFAType",
+ "printedName": "LinkKit.PLKMFAType",
+ "usr": "c:@E@PLKMFAType"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvg",
+ "mangledName": "$s7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO20submitDocumentsErroryA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO20submitDocumentsErroryA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit7MFATypeO",
+ "mangledName": "$s7LinkKit7MFATypeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
- "kind": "Var",
- "name": "verifySMS",
- "printedName": "verifySMS",
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "EmbeddedSearchAndSelectView",
+ "printedName": "EmbeddedSearchAndSelectView",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(viewModel:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "EmbeddedSearchAndSelectView",
+ "printedName": "LinkKit.EmbeddedSearchAndSelectView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "EmbeddedSearchViewModel",
+ "printedName": "Workflow.EmbeddedSearchViewModel",
+ "usr": "s:8Workflow23EmbeddedSearchViewModelC"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9verifySMSyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9verifySMSyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit27EmbeddedSearchAndSelectViewC9viewModelAC8Workflow0cdgI0C_tcfc",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC9viewModelAC8Workflow0cdgI0C_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
+ "Custom",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "kind": "Function",
+ "name": "collectionView",
+ "printedName": "collectionView(_:didSelectItemAt:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> (Swift.String) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit8ViewNameO7unknownyACSScACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
},
{
"kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit8ViewNameO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit8ViewNameO4fromACs7Decoder_p_tKcfc",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didSelectItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_03didF6ItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:didSelectItemAtIndexPath:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "throwing": true,
- "init_kind": "Designated"
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
+ "kind": "Function",
+ "name": "collectionView",
+ "printedName": "collectionView(_:didHighlightItemAt:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit8ViewNameO8rawValueACSS_tcfc",
- "mangledName": "$s7LinkKit8ViewNameO8rawValueACSS_tcfc",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didHighlightItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_18didHighlightItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:didHighlightItemAtIndexPath:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "init_kind": "Designated"
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "description",
- "printedName": "description",
+ "kind": "Function",
+ "name": "collectionView",
+ "printedName": "collectionView(_:didUnhighlightItemAt:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit8ViewNameO11descriptionSSvp",
- "mangledName": "$s7LinkKit8ViewNameO11descriptionSSvp",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didUnhighlightItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_20didUnhighlightItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:didUnhighlightItemAtIndexPath:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit8ViewNameO11descriptionSSvg",
- "mangledName": "$s7LinkKit8ViewNameO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "name": "collectionView",
+ "printedName": "collectionView(_:numberOfItemsInSection:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
},
{
"kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit8ViewNameO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit8ViewNameO6encode2toys7Encoder_p_tKF",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:numberOfItemsInSection:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_22numberOfItemsInSectionSiSo012UICollectionG0C_SitF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:numberOfItemsInSection:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "throwing": true,
+ "isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "name": "collectionView",
+ "printedName": "collectionView(_:cellForItemAt:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "UICollectionViewCell",
+ "printedName": "UIKit.UICollectionViewCell",
+ "usr": "c:objc(cs)UICollectionViewCell"
},
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
},
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit8ViewNameO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit8ViewNameO2eeoiySbAC_ACtFZ",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:cellForItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_13cellForItemAtSo012UICollectionG4CellCSo0mG0C_10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
- "static": true,
+ "objc_name": "collectionView:cellForItemAtIndexPath:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "toObjCValue",
- "printedName": "toObjCValue",
+ "kind": "Function",
+ "name": "collectionView",
+ "printedName": "collectionView(_:layout:sizeForItemAt:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKViewNameValue?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKViewNameValue",
- "printedName": "LinkKit.PLKViewNameValue",
- "usr": "c:@E@PLKViewNameValue"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvp",
- "mangledName": "$s7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
+ "name": "CGSize",
+ "printedName": "CoreFoundation.CGSize",
+ "usr": "c:@S@CGSize"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKViewNameValue?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKViewNameValue",
- "printedName": "LinkKit.PLKViewNameValue",
- "usr": "c:@E@PLKViewNameValue"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvg",
- "mangledName": "$s7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
+ "kind": "TypeNominal",
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
+ },
{
"kind": "TypeNominal",
- "name": "PLKViewName",
- "printedName": "LinkKit.PLKViewName",
- "usr": "c:objc(cs)PLKViewName"
+ "name": "UICollectionViewLayout",
+ "printedName": "UIKit.UICollectionViewLayout",
+ "usr": "c:objc(cs)UICollectionViewLayout"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvp",
- "mangledName": "$s7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvp",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:layout:sizeForItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_6layout13sizeForItemAtSo6CGSizeVSo012UICollectionG0C_So0oG6LayoutC10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:layout:sizeForItemAtIndexPath:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
"isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKViewName",
- "printedName": "LinkKit.PLKViewName",
- "usr": "c:objc(cs)PLKViewName"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvg",
- "mangledName": "$s7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit8ViewNameO",
- "mangledName": "$s7LinkKit8ViewNameO",
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC",
"moduleName": "LinkKit",
"declAttributes": [
+ "Custom",
+ "Final",
"AccessControl",
- "RawDocComment"
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIView",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "UIKit.UIView",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
],
"conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
{
"kind": "Conformance",
"name": "CustomStringConvertible",
@@ -27841,258 +27341,407 @@
},
{
"kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
},
{
"kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
},
{
"kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "__DefaultCustomPlaygroundQuickLookable",
+ "printedName": "__DefaultCustomPlaygroundQuickLookable",
+ "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
+ "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "LayoutArea",
+ "printedName": "LayoutArea",
+ "usr": "s:9AppCoreUI10LayoutAreaP",
+ "mangledName": "$s9AppCoreUI10LayoutAreaP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
{
"kind": "TypeDecl",
- "name": "EventMetadata",
- "printedName": "EventMetadata",
+ "name": "TodoPaneViewController",
+ "printedName": "TodoPaneViewController",
"children": [
{
- "kind": "Var",
- "name": "accountNumberMask",
- "printedName": "accountNumberMask",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(with:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "TodoPaneViewController",
+ "printedName": "LinkKit.TodoPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TODOViewModel",
+ "printedName": "Workflow.TODOViewModel",
+ "usr": "s:8Workflow13TODOViewModelC"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit22TodoPaneViewControllerC4withAC8Workflow13TODOViewModelC_tcfc",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC4withAC8Workflow13TODOViewModelC_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Custom",
+ "Required",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.TodoPaneViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "TodoPaneViewController",
+ "printedName": "LinkKit.TodoPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC11viewDidLoadyyF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidAppear",
+ "printedName": "viewDidAppear(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)viewDidAppear:",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC13viewDidAppearyySbF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidAppear:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "errorCode",
- "printedName": "errorCode",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "TODOViewModel",
+ "printedName": "Workflow.TODOViewModel",
+ "usr": "s:8Workflow13TODOViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvp",
+ "usr": "s:7LinkKit22TodoPaneViewControllerC9viewModel33_F224A9F6BC8F4F117F334109F7CC7D5DLL8Workflow08TODOViewH0Cvp",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC9viewModel33_F224A9F6BC8F4F117F334109F7CC7D5DLL8Workflow08TODOViewH0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Custom",
+ "Final",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "TodoPaneViewController",
+ "printedName": "LinkKit.TodoPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ReactNativeLinkKit",
+ "printedName": "ReactNativeLinkKit",
+ "children": [
{
"kind": "Var",
- "name": "errorMessage",
- "printedName": "errorMessage",
+ "name": "sdkVersion",
+ "printedName": "sdkVersion",
"children": [
{
"kind": "TypeNominal",
@@ -28110,9 +27759,10 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvp",
+ "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvpZ",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
@@ -28142,10 +27792,14 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvg",
+ "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvgZ",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
},
{
@@ -28174,10 +27828,14 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvs",
+ "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvsZ",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvsZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "set"
},
{
@@ -28192,463 +27850,280 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvM",
+ "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvMZ",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvMZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "_modify"
}
]
},
{
- "kind": "Var",
- "name": "exitStatus",
- "printedName": "exitStatus",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ],
- "usr": "s:Sq"
+ "name": "ReactNativeLinkKit",
+ "printedName": "LinkKit.ReactNativeLinkKit",
+ "usr": "s:7LinkKit011ReactNativeaB0V"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit011ReactNativeaB0VACycfc",
+ "mangledName": "$s7LinkKit011ReactNativeaB0VACycfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit011ReactNativeaB0V",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
{
- "kind": "Var",
- "name": "institutionID",
- "printedName": "institutionID",
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AuthenticationServices",
+ "printedName": "AuthenticationServices",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkOOPWebViewController",
+ "printedName": "LinkOOPWebViewController",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(ViewModel:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "LinkOOPWebViewController",
+ "printedName": "LinkKit.LinkOOPWebViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "OutOfProcessWebViewModel",
+ "printedName": "Workflow.OutOfProcessWebViewModel",
+ "usr": "s:8Workflow24OutOfProcessWebViewModelC"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A20OOPWebViewControllerC0D5ModelAC8Workflow015OutOfProcessWebdF0C_tcfc",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC0D5ModelAC8Workflow015OutOfProcessWebdF0C_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Custom",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidAppear",
+ "printedName": "viewDidAppear(_:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)viewDidAppear:",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC13viewDidAppearyySbF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidAppear:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
+ "children": [
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC11viewDidLoadyyF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "institutionName",
- "printedName": "institutionName",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "OutOfProcessWebViewModel",
+ "printedName": "Workflow.OutOfProcessWebViewModel",
+ "usr": "s:8Workflow24OutOfProcessWebViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvp",
+ "usr": "s:7LinkKit0A20OOPWebViewControllerC9viewModel33_511DB72405631A29D0102CBAA022739ALL8Workflow015OutOfProcessWebdG0Cvp",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC9viewModel33_511DB72405631A29D0102CBAA022739ALL8Workflow015OutOfProcessWebdG0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Custom",
+ "Final",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "institutionSearchQuery",
- "printedName": "institutionSearchQuery",
+ "name": "webAuthenticationSession",
+ "printedName": "webAuthenticationSession",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Any?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ProtocolComposition",
+ "printedName": "Any"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvp",
+ "usr": "s:7LinkKit0A20OOPWebViewControllerC24webAuthenticationSession33_511DB72405631A29D0102CBAA022739ALLypSgvp",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC24webAuthenticationSession33_511DB72405631A29D0102CBAA022739ALLypSgvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
+ "fixedbinaryorder": 1,
+ "hasStorage": true
},
{
- "kind": "Var",
- "name": "isUpdateMode",
- "printedName": "isUpdateMode",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LinkOOPWebViewController",
+ "printedName": "LinkKit.LinkOOPWebViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController"
+ },
{
"kind": "TypeNominal",
"name": "Optional",
@@ -28662,214 +28137,494 @@
}
],
"usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvp",
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(url:popupBehavior:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Link_Workflow_Nodes_Panes_WebviewFallbackIOSPopupBehavior",
+ "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_WebviewFallbackIOSPopupBehavior",
+ "usr": "s:13WorkflowProto05Link_A44_Nodes_Panes_WebviewFallbackIOSPopupBehaviorO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A20OOPWebViewControllerC4open3url13popupBehaviory10Foundation3URLV_13WorkflowProto0a1_l36_Nodes_Panes_WebviewFallbackIOSPopupI0OtF",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC4open3url13popupBehaviory10Foundation3URLV_13WorkflowProto0a1_l36_Nodes_Panes_WebviewFallbackIOSPopupI0OtF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Final",
+ "Custom"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "presentationAnchor",
+ "printedName": "presentationAnchor(for:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UIWindow",
+ "printedName": "UIKit.UIWindow",
+ "usr": "c:objc(cs)UIWindow"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ASWebAuthenticationSession",
+ "printedName": "AuthenticationServices.ASWebAuthenticationSession",
+ "usr": "c:objc(cs)ASWebAuthenticationSession"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)LinkOOPWebViewController(im)presentationAnchorForWebAuthenticationSession:",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF",
+ "moduleName": "LinkKit",
+ "objc_name": "presentationAnchorForWebAuthenticationSession:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "OutOfProcessWebViewModelDelegate",
+ "printedName": "OutOfProcessWebViewModelDelegate",
+ "usr": "s:8Workflow32OutOfProcessWebViewModelDelegateP",
+ "mangledName": "$s8Workflow32OutOfProcessWebViewModelDelegateP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InstitutionErrorCode",
+ "printedName": "InstitutionErrorCode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "institutionDown",
+ "printedName": "institutionDown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO15institutionDownyA2CmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO15institutionDownyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "institutionNotResponding",
+ "printedName": "institutionNotResponding",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO24institutionNotRespondingyA2CmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO24institutionNotRespondingyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "institutionNotAvailable",
+ "printedName": "institutionNotAvailable",
+ "children": [
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO23institutionNotAvailableyA2CmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO23institutionNotAvailableyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "matchReason",
- "printedName": "matchReason",
+ "name": "institutionNoLongerSupported",
+ "printedName": "institutionNoLongerSupported",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO28institutionNoLongerSupportedyA2CmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO28institutionNoLongerSupportedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> (Swift.String) -> LinkKit.InstitutionErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.InstitutionErrorCode",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO6stringACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "linkSessionID",
- "printedName": "linkSessionID",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
@@ -28879,15 +28634,12 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvp",
- "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -28902,22 +28654,43 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvg",
- "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvg",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
- "implicit": true,
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "institutionDownString",
+ "printedName": "institutionDownString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvpZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -28926,62 +28699,41 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvs",
- "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvs",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvgZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvM",
- "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "mfaType",
- "printedName": "mfaType",
+ "name": "institutionNotRespondingString",
+ "printedName": "institutionNotRespondingString",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvpZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -28991,108 +28743,47 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvs",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvgZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "requestID",
- "printedName": "requestID",
+ "name": "institutionNotAvailableString",
+ "printedName": "institutionNotAvailableString",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvpZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -29102,108 +28793,47 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvs",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvgZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "routingNumber",
- "printedName": "routingNumber",
+ "name": "institutionNoLongerSupportedString",
+ "printedName": "institutionNoLongerSupportedString",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvpZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -29213,109 +28843,49 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvs",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvgZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "selection",
- "printedName": "selection",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.PLKInstitutionErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKInstitutionErrorCode",
+ "printedName": "LinkKit.PLKInstitutionErrorCode",
+ "usr": "c:@E@PLKInstitutionErrorCode"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvp",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -29325,400 +28895,452 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.PLKInstitutionErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKInstitutionErrorCode",
+ "printedName": "LinkKit.PLKInstitutionErrorCode",
+ "usr": "c:@E@PLKInstitutionErrorCode"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvg",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvg",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvg",
"moduleName": "LinkKit",
- "implicit": true,
+ "isFromExtension": true,
"accessorKind": "get"
- },
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "InvalidRequestErrorCode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "missingFields",
+ "printedName": "missingFields",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO13missingFieldsyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO13missingFieldsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "timestamp",
- "printedName": "timestamp",
+ "name": "unknownFields",
+ "printedName": "unknownFields",
"children": [
{
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvp",
- "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO13unknownFieldsyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO13unknownFieldsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvg",
- "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidField",
+ "printedName": "invalidField",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvs",
- "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvM",
- "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO12invalidFieldyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO12invalidFieldyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "viewName",
- "printedName": "viewName",
+ "name": "invalidBody",
+ "printedName": "invalidBody",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ViewName?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO11invalidBodyyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11invalidBodyyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidAddress",
+ "printedName": "invalidAddress",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ViewName?",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO14invalidAddressyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14invalidAddressyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "notFound",
+ "printedName": "notFound",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ViewName?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO8notFoundyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO8notFoundyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "metadataJSON",
- "printedName": "metadataJSON",
+ "name": "sandboxOnly",
+ "printedName": "sandboxOnly",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO11sandboxOnlyyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11sandboxOnlyyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> (Swift.String) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.InvalidRequestErrorCode",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(accountNumberMask:errorCode:errorMessage:exitStatus:institutionID:institutionName:institutionSearchQuery:isUpdateMode:matchReason:linkSessionID:mfaType:requestID:routingNumber:selection:timestamp:viewName:metadataJSON:)",
+ "printedName": "init(string:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6stringACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11descriptionSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29727,28 +29349,43 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "missingFieldsString",
+ "printedName": "missingFieldsString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29757,43 +29394,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknownFieldsString",
+ "printedName": "unknownFieldsString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29802,28 +29444,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidFieldString",
+ "printedName": "invalidFieldString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29832,13 +29494,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidBodyString",
+ "printedName": "invalidBodyString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29847,34 +29544,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidAddressString",
+ "printedName": "invalidAddressString",
+ "children": [
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29883,13 +29594,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "notFoundString",
+ "printedName": "notFoundString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29898,13 +29644,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sandboxOnlyString",
+ "printedName": "sandboxOnlyString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29913,239 +29694,144 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.ViewName?",
+ "printedName": "LinkKit.PLKInvalidRequestErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "PLKInvalidRequestErrorCode",
+ "printedName": "LinkKit.PLKInvalidRequestErrorCode",
+ "usr": "c:@E@PLKInvalidRequestErrorCode"
}
],
- "hasDefaultArg": true,
"usr": "s:Sq"
- },
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKInvalidRequestErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKInvalidRequestErrorCode",
+ "printedName": "LinkKit.PLKInvalidRequestErrorCode",
+ "usr": "c:@E@PLKInvalidRequestErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMask9errorCode0H7Message10exitStatus13institutionID0M4Name0M11SearchQuery12isUpdateMode11matchReason011linkSessionN07mfaType07requestN007routingF09selection9timestamp04viewO012metadataJSONACSSSg_AA09ExitErrorI0OSgAuA04ExitL0OSgA5USSAA7MFATypeOSgA3U10Foundation4DateVAA04ViewO0OSgAUtcfc",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMask9errorCode0H7Message10exitStatus13institutionID0M4Name0M11SearchQuery12isUpdateMode11matchReason011linkSessionN07mfaType07requestN007routingF09selection9timestamp04viewO012metadataJSONACSSSg_AA09ExitErrorI0OSgAuA04ExitL0OSgA5USSAA7MFATypeOSgA3U10Foundation4DateVAA04ViewO0OSgAUtcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13EventMetadataV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit13EventMetadataV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit13EventMetadataV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit13EventMetadataV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit13EventMetadataV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit13EventMetadataV2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKEventMetadata",
- "printedName": "LinkKit.PLKEventMetadata",
- "usr": "c:objc(cs)PLKEventMetadata"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvp",
- "mangledName": "$s7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKEventMetadata",
- "printedName": "LinkKit.PLKEventMetadata",
- "usr": "c:objc(cs)PLKEventMetadata"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvg",
- "mangledName": "$s7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit13EventMetadataV",
- "mangledName": "$s7LinkKit13EventMetadataV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
{
"kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "MFAType",
- "printedName": "MFAType",
+ "name": "ItemErrorCode",
+ "printedName": "ItemErrorCode",
"children": [
{
"kind": "Var",
- "name": "code",
- "printedName": "code",
+ "name": "insufficientCredentials",
+ "printedName": "insufficientCredentials",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.MFAType.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30153,8 +29839,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit7MFATypeO4codeyA2CmF",
- "mangledName": "$s7LinkKit7MFATypeO4codeyA2CmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO23insufficientCredentialsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23insufficientCredentialsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -30162,30 +29848,30 @@
},
{
"kind": "Var",
- "name": "device",
- "printedName": "device",
+ "name": "invalidCredentials",
+ "printedName": "invalidCredentials",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.MFAType.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30193,8 +29879,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit7MFATypeO6deviceyA2CmF",
- "mangledName": "$s7LinkKit7MFATypeO6deviceyA2CmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO18invalidCredentialsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO18invalidCredentialsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -30202,30 +29888,30 @@
},
{
"kind": "Var",
- "name": "questions",
- "printedName": "questions",
+ "name": "invalidMfa",
+ "printedName": "invalidMfa",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.MFAType.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30233,8 +29919,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit7MFATypeO9questionsyA2CmF",
- "mangledName": "$s7LinkKit7MFATypeO9questionsyA2CmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO10invalidMfayA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO10invalidMfayA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -30242,30 +29928,30 @@
},
{
"kind": "Var",
- "name": "selections",
- "printedName": "selections",
+ "name": "invalidSendMethod",
+ "printedName": "invalidSendMethod",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.MFAType.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30273,569 +29959,279 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit7MFATypeO10selectionsyA2CmF",
- "mangledName": "$s7LinkKit7MFATypeO10selectionsyA2CmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO17invalidSendMethodyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO17invalidSendMethodyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Var",
+ "name": "invalidUpdatedUsername",
+ "printedName": "invalidUpdatedUsername",
"children": [
{
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit7MFATypeO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit7MFATypeO4fromACs7Decoder_p_tKcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO22invalidUpdatedUsernameyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO22invalidUpdatedUsernameyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
+ "kind": "Var",
+ "name": "itemLocked",
+ "printedName": "itemLocked",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit7MFATypeO8rawValueACSgSS_tcfc",
- "mangledName": "$s7LinkKit7MFATypeO8rawValueACSgSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO10itemLockedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO10itemLockedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "itemLoginRequired",
+ "printedName": "itemLoginRequired",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO11descriptionSSvp",
- "mangledName": "$s7LinkKit7MFATypeO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO11descriptionSSvg",
- "mangledName": "$s7LinkKit7MFATypeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO17itemLoginRequiredyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO17itemLoginRequiredyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "kind": "Var",
+ "name": "itemNoError",
+ "printedName": "itemNoError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7MFATypeO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit7MFATypeO6encode2toys7Encoder_p_tKF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD0yA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD0yA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "codeString",
- "printedName": "codeString",
+ "name": "itemNotSupported",
+ "printedName": "itemNotSupported",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO10codeStringSSvpZ",
- "mangledName": "$s7LinkKit7MFATypeO10codeStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO10codeStringSSvgZ",
- "mangledName": "$s7LinkKit7MFATypeO10codeStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO16itemNotSupportedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16itemNotSupportedyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "deviceString",
- "printedName": "deviceString",
+ "name": "incorrectDepositAmounts",
+ "printedName": "incorrectDepositAmounts",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO12deviceStringSSvpZ",
- "mangledName": "$s7LinkKit7MFATypeO12deviceStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO12deviceStringSSvgZ",
- "mangledName": "$s7LinkKit7MFATypeO12deviceStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "questionsString",
- "printedName": "questionsString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO15questionsStringSSvpZ",
- "mangledName": "$s7LinkKit7MFATypeO15questionsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO15questionsStringSSvgZ",
- "mangledName": "$s7LinkKit7MFATypeO15questionsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "selectionsString",
- "printedName": "selectionsString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO16selectionsStringSSvpZ",
- "mangledName": "$s7LinkKit7MFATypeO16selectionsStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO23incorrectDepositAmountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23incorrectDepositAmountsyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO16selectionsStringSSvgZ",
- "mangledName": "$s7LinkKit7MFATypeO16selectionsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit7MFATypeO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit7MFATypeO2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO9hashValueSivp",
- "mangledName": "$s7LinkKit7MFATypeO9hashValueSivp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO9hashValueSivg",
- "mangledName": "$s7LinkKit7MFATypeO9hashValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit7MFATypeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit7MFATypeO4hash4intoys6HasherVz_tF",
- "moduleName": "LinkKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKMFAType",
- "printedName": "LinkKit.PLKMFAType",
- "usr": "c:@E@PLKMFAType"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvp",
- "mangledName": "$s7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKMFAType",
- "printedName": "LinkKit.PLKMFAType",
- "usr": "c:@E@PLKMFAType"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvg",
- "mangledName": "$s7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
+ "RawDocComment"
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit7MFATypeO",
- "mangledName": "$s7LinkKit7MFATypeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
},
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PresentationMethod",
- "printedName": "PresentationMethod",
- "children": [
{
"kind": "Var",
- "name": "viewController",
- "printedName": "viewController",
+ "name": "userSetupRequired",
+ "printedName": "userSetupRequired",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.PresentationMethod.Type) -> (UIKit.UIViewController) -> LinkKit.PresentationMethod",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> LinkKit.PresentationMethod",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.PresentationMethod.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30843,8 +30239,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18PresentationMethodO14viewControlleryACSo06UIViewF0CcACmF",
- "mangledName": "$s7LinkKit18PresentationMethodO14viewControlleryACSo06UIViewF0CcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO17userSetupRequiredyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO17userSetupRequiredyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -30852,80 +30248,30 @@
},
{
"kind": "Var",
- "name": "custom",
- "printedName": "custom",
+ "name": "mfaNotSupported",
+ "printedName": "mfaNotSupported",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.PresentationMethod.Type) -> (@escaping (UIKit.UIViewController) -> (), @escaping (UIKit.UIViewController) -> ()) -> LinkKit.PresentationMethod",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(@escaping (UIKit.UIViewController) -> (), @escaping (UIKit.UIViewController) -> ()) -> LinkKit.PresentationMethod",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "((UIKit.UIViewController) -> (), (UIKit.UIViewController) -> ())",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.PresentationMethod.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30933,67 +30279,39 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18PresentationMethodO6customyACySo16UIViewControllerCc_yAFctcACmF",
- "mangledName": "$s7LinkKit18PresentationMethodO6customyACySo16UIViewControllerCc_yAFctcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO15mfaNotSupportedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO15mfaNotSupportedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit18PresentationMethodO",
- "mangledName": "$s7LinkKit18PresentationMethodO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ExitErrorCode",
- "printedName": "ExitErrorCode",
- "children": [
+ },
{
"kind": "Var",
- "name": "apiError",
- "printedName": "apiError",
+ "name": "noAccounts",
+ "printedName": "noAccounts",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.ApiErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ApiErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31001,8 +30319,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO03apiD0yAcA03ApidE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD0yAcA03ApidE0OcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO10noAccountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO10noAccountsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31010,96 +30328,30 @@
},
{
"kind": "Var",
- "name": "authError",
- "printedName": "authError",
+ "name": "noAuthAccounts",
+ "printedName": "noAuthAccounts",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.AuthErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.AuthErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO04authD0yAcA04AuthdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04authD0yAcA04AuthdE0OcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "assetReportError",
- "printedName": "assetReportError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.AssetReportErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
- }
- ]
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31107,8 +30359,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD0yAcA05AssetgdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD0yAcA05AssetgdE0OcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO14noAuthAccountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO14noAuthAccountsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31116,43 +30368,30 @@
},
{
"kind": "Var",
- "name": "internal",
- "printedName": "internal",
+ "name": "noInvestmentAccounts",
+ "printedName": "noInvestmentAccounts",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (Swift.String) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31160,8 +30399,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO8internalyACSScACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO8internalyACSScACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO20noInvestmentAccountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO20noInvestmentAccountsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31169,78 +30408,25 @@
},
{
"kind": "Var",
- "name": "institutionError",
- "printedName": "institutionError",
+ "name": "noLiabilityAccounts",
+ "printedName": "noLiabilityAccounts",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InstitutionErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO011institutionD0yAcA011InstitutiondE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD0yAcA011InstitutiondE0OcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "itemError",
- "printedName": "itemError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.ItemErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
{
"kind": "TypeNominal",
"name": "ItemErrorCode",
@@ -31248,26 +30434,13 @@
"usr": "s:7LinkKit13ItemErrorCodeO"
}
]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
}
]
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO04itemD0yAcA04ItemdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD0yAcA04ItemdE0OcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO19noLiabilityAccountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO19noLiabilityAccountsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31275,43 +30448,30 @@
},
{
"kind": "Var",
- "name": "invalidInput",
- "printedName": "invalidInput",
+ "name": "productNotReady",
+ "printedName": "productNotReady",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InvalidInputErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31319,8 +30479,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO12invalidInputyAcA07InvalidgdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO12invalidInputyAcA07InvalidgdE0OcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO15productNotReadyyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO15productNotReadyyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31328,43 +30488,30 @@
},
{
"kind": "Var",
- "name": "invalidRequest",
- "printedName": "invalidRequest",
+ "name": "productsNotSupported",
+ "printedName": "productsNotSupported",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InvalidRequestErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31372,8 +30519,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO14invalidRequestyAcA07InvalidgdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO14invalidRequestyAcA07InvalidgdE0OcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO20productsNotSupportedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO20productsNotSupportedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31381,43 +30528,30 @@
},
{
"kind": "Var",
- "name": "rateLimitExceeded",
- "printedName": "rateLimitExceeded",
+ "name": "instantMatchFailed",
+ "printedName": "instantMatchFailed",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.RateLimitErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31425,8 +30559,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO17rateLimitExceededyAcA04RategdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO17rateLimitExceededyAcA04RategdE0OcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO18instantMatchFailedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO18instantMatchFailedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31440,50 +30574,37 @@
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (Swift.String, Swift.String) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> (Swift.String) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.ExitErrorCode",
+ "printedName": "(Swift.String) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(type: Swift.String, code: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31491,39 +30612,35 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO7unknownyACSS_SStcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO7unknownyACSS_SStcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "usr": "s:7LinkKit13ItemErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(from:)",
+ "printedName": "init(string:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit13ExitErrorCodeO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit13ExitErrorCodeO4fromACs7Decoder_p_tKcfc",
+ "usr": "s:7LinkKit13ItemErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO6stringACSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
],
- "throwing": true,
"init_kind": "Designated"
},
{
@@ -31539,8 +30656,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit13ExitErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit13ItemErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -31559,65 +30676,68 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit13ExitErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit13ItemErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
"accessorKind": "get"
}
]
},
{
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "kind": "Var",
+ "name": "insufficientCredentialsString",
+ "printedName": "insufficientCredentialsString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit13ExitErrorCodeO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO6encode2toys7Encoder_p_tKF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "from",
- "printedName": "from(errorType:errorCode:)",
- "children": [
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidCredentialsString",
+ "printedName": "invalidCredentialsString",
+ "children": [
{
"kind": "TypeNominal",
"name": "String",
@@ -31625,116 +30745,24 @@
"usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit13ExitErrorCodeO4from9errorType0gE0ACSgSS_SStFZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO4from9errorType0gE0ACSgSS_SStFZ",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "CodingKeys",
- "printedName": "CodingKeys",
- "children": [
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "Var",
- "name": "errorType",
- "printedName": "errorType",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.CodingKeys.Type) -> LinkKit.ExitErrorCode.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO9errorTypeyA2EmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO9errorTypeyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "errorCode",
- "printedName": "errorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.CodingKeys.Type) -> LinkKit.ExitErrorCode.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO05errorE0yA2EmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO05errorE0yA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -31742,110 +30770,49 @@
"usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueAESgSS_tcfc",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvp",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvg",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidMfaString",
+ "printedName": "invalidMfaString",
+ "children": [
{
- "kind": "Var",
- "name": "stringValue",
- "printedName": "stringValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvp",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvg",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO16invalidMfaStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16invalidMfaStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringValue:)",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -31853,182 +30820,23 @@
"usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueAESgSS_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "intValue",
- "printedName": "intValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvp",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvg",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(intValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueAESgSi_tcfc",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueAESgSi_tcfc",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO16invalidMfaStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16invalidMfaStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "enumRawTypeName": "String",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
+ "declAttributes": [
+ "Transparent"
],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "CodingKey",
- "printedName": "CodingKey",
- "usr": "s:s9CodingKeyP",
- "mangledName": "$ss9CodingKeyP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "invalidRequestString",
- "printedName": "invalidRequestString",
+ "name": "invalidSendMethodString",
+ "printedName": "invalidSendMethodString",
"children": [
{
"kind": "TypeNominal",
@@ -32038,8 +30846,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO20invalidRequestStringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO20invalidRequestStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32063,8 +30871,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO20invalidRequestStringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO20invalidRequestStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32077,8 +30885,8 @@
},
{
"kind": "Var",
- "name": "invalidInputString",
- "printedName": "invalidInputString",
+ "name": "invalidUpdatedUsernameString",
+ "printedName": "invalidUpdatedUsernameString",
"children": [
{
"kind": "TypeNominal",
@@ -32088,8 +30896,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO18invalidInputStringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO18invalidInputStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32113,8 +30921,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO18invalidInputStringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO18invalidInputStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32127,8 +30935,8 @@
},
{
"kind": "Var",
- "name": "institutionErrorString",
- "printedName": "institutionErrorString",
+ "name": "itemLockedString",
+ "printedName": "itemLockedString",
"children": [
{
"kind": "TypeNominal",
@@ -32138,8 +30946,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO011institutionD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD6StringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO16itemLockedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16itemLockedStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32163,8 +30971,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO011institutionD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD6StringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO16itemLockedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16itemLockedStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32177,8 +30985,8 @@
},
{
"kind": "Var",
- "name": "rateLimitExceededString",
- "printedName": "rateLimitExceededString",
+ "name": "itemLoginRequiredString",
+ "printedName": "itemLoginRequiredString",
"children": [
{
"kind": "TypeNominal",
@@ -32188,8 +30996,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32213,8 +31021,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32227,8 +31035,8 @@
},
{
"kind": "Var",
- "name": "apiErrorString",
- "printedName": "apiErrorString",
+ "name": "itemNoErrorString",
+ "printedName": "itemNoErrorString",
"children": [
{
"kind": "TypeNominal",
@@ -32238,8 +31046,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO03apiD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD6StringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD6StringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32263,8 +31071,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO03apiD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD6StringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD6StringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32277,8 +31085,8 @@
},
{
"kind": "Var",
- "name": "itemErrorString",
- "printedName": "itemErrorString",
+ "name": "itemNotSupportedString",
+ "printedName": "itemNotSupportedString",
"children": [
{
"kind": "TypeNominal",
@@ -32288,8 +31096,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO04itemD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD6StringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32313,8 +31121,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO04itemD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD6StringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32327,8 +31135,8 @@
},
{
"kind": "Var",
- "name": "authErrorString",
- "printedName": "authErrorString",
+ "name": "incorrectDepositAmountsString",
+ "printedName": "incorrectDepositAmountsString",
"children": [
{
"kind": "TypeNominal",
@@ -32338,8 +31146,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO04authD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04authD6StringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32363,8 +31171,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO04authD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04authD6StringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32377,8 +31185,8 @@
},
{
"kind": "Var",
- "name": "assetReportErrorString",
- "printedName": "assetReportErrorString",
+ "name": "userSetupRequiredString",
+ "printedName": "userSetupRequiredString",
"children": [
{
"kind": "TypeNominal",
@@ -32388,8 +31196,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD6StringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32413,8 +31221,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD6StringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32427,8 +31235,8 @@
},
{
"kind": "Var",
- "name": "internalString",
- "printedName": "internalString",
+ "name": "mfaNotSupportedString",
+ "printedName": "mfaNotSupportedString",
"children": [
{
"kind": "TypeNominal",
@@ -32438,8 +31246,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO14internalStringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO14internalStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32463,8 +31271,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO14internalStringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO14internalStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32476,436 +31284,9 @@
]
},
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit13ExitErrorCodeO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit13ExitErrorCodeO",
- "mangledName": "$s7LinkKit13ExitErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InvalidRequestErrorCode",
- "printedName": "InvalidRequestErrorCode",
- "children": [
- {
- "kind": "Var",
- "name": "missingFields",
- "printedName": "missingFields",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO13missingFieldsyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO13missingFieldsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknownFields",
- "printedName": "unknownFields",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO13unknownFieldsyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO13unknownFieldsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidField",
- "printedName": "invalidField",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO12invalidFieldyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO12invalidFieldyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidBody",
- "printedName": "invalidBody",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO11invalidBodyyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11invalidBodyyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidAddress",
- "printedName": "invalidAddress",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO14invalidAddressyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14invalidAddressyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "notFound",
- "printedName": "notFound",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO8notFoundyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO8notFoundyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "sandboxOnly",
- "printedName": "sandboxOnly",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO11sandboxOnlyyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11sandboxOnlyyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> (Swift.String) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6stringACSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
+ "kind": "Var",
+ "name": "noAccountsString",
+ "printedName": "noAccountsString",
"children": [
{
"kind": "TypeNominal",
@@ -32915,12 +31296,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit13ItemErrorCodeO16noAccountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16noAccountsStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -32935,17 +31321,22 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit13ItemErrorCodeO16noAccountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16noAccountsStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "missingFieldsString",
- "printedName": "missingFieldsString",
+ "name": "noAuthAccountsString",
+ "printedName": "noAuthAccountsString",
"children": [
{
"kind": "TypeNominal",
@@ -32955,8 +31346,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32980,8 +31371,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32994,8 +31385,8 @@
},
{
"kind": "Var",
- "name": "unknownFieldsString",
- "printedName": "unknownFieldsString",
+ "name": "noInvestmentAccountsString",
+ "printedName": "noInvestmentAccountsString",
"children": [
{
"kind": "TypeNominal",
@@ -33005,8 +31396,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33030,8 +31421,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33044,8 +31435,8 @@
},
{
"kind": "Var",
- "name": "invalidFieldString",
- "printedName": "invalidFieldString",
+ "name": "noLiabilityAccountsString",
+ "printedName": "noLiabilityAccountsString",
"children": [
{
"kind": "TypeNominal",
@@ -33055,8 +31446,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33080,8 +31471,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33094,8 +31485,8 @@
},
{
"kind": "Var",
- "name": "invalidBodyString",
- "printedName": "invalidBodyString",
+ "name": "productNotReadyString",
+ "printedName": "productNotReadyString",
"children": [
{
"kind": "TypeNominal",
@@ -33105,8 +31496,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO21productNotReadyStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO21productNotReadyStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33130,8 +31521,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO21productNotReadyStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO21productNotReadyStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33144,8 +31535,8 @@
},
{
"kind": "Var",
- "name": "invalidAddressString",
- "printedName": "invalidAddressString",
+ "name": "productsNotSupportedString",
+ "printedName": "productsNotSupportedString",
"children": [
{
"kind": "TypeNominal",
@@ -33155,8 +31546,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33180,8 +31571,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33194,8 +31585,8 @@
},
{
"kind": "Var",
- "name": "notFoundString",
- "printedName": "notFoundString",
+ "name": "instantMatchFailedString",
+ "printedName": "instantMatchFailedString",
"children": [
{
"kind": "TypeNominal",
@@ -33205,8 +31596,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33230,8 +31621,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33244,77 +31635,27 @@
},
{
"kind": "Var",
- "name": "sandboxOnlyString",
- "printedName": "sandboxOnlyString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.PLKInvalidRequestErrorCode?",
+ "printedName": "LinkKit.PLKItemErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKInvalidRequestErrorCode",
- "printedName": "LinkKit.PLKInvalidRequestErrorCode",
- "usr": "c:@E@PLKInvalidRequestErrorCode"
+ "name": "PLKItemErrorCode",
+ "printedName": "LinkKit.PLKItemErrorCode",
+ "usr": "c:@E@PLKItemErrorCode"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "usr": "s:7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvp",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvp",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessors": [
@@ -33326,21 +31667,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.PLKInvalidRequestErrorCode?",
+ "printedName": "LinkKit.PLKItemErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKInvalidRequestErrorCode",
- "printedName": "LinkKit.PLKInvalidRequestErrorCode",
- "usr": "c:@E@PLKInvalidRequestErrorCode"
+ "name": "PLKItemErrorCode",
+ "printedName": "LinkKit.PLKItemErrorCode",
+ "usr": "c:@E@PLKItemErrorCode"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "usr": "s:7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvg",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
@@ -33349,8 +31690,8 @@
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO",
+ "usr": "s:7LinkKit13ItemErrorCodeO",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -33379,433 +31720,496 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "InvalidInputErrorCode",
- "printedName": "InvalidInputErrorCode",
+ "name": "LinkEvent",
+ "printedName": "LinkEvent",
"children": [
{
"kind": "Var",
- "name": "invalidApiKeys",
- "printedName": "invalidApiKeys",
+ "name": "eventName",
+ "printedName": "eventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO14invalidApiKeysyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO14invalidApiKeysyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovp",
+ "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unauthorizedEnvironment",
- "printedName": "unauthorizedEnvironment",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO23unauthorizedEnvironmentyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO23unauthorizedEnvironmentyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidAccessToken",
- "printedName": "invalidAccessToken",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovg",
+ "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidAccessTokenyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidAccessTokenyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidPublicToken",
- "printedName": "invalidPublicToken",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovs",
+ "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
+ "name": "Void",
+ "printedName": "()"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0OvM",
+ "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0OvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidPublicTokenyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidPublicTokenyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "invalidProduct",
- "printedName": "invalidProduct",
+ "name": "metadata",
+ "printedName": "metadata",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO14invalidProductyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO14invalidProductyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvp",
+ "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidAccountId",
- "printedName": "invalidAccountId",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvg",
+ "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvs",
+ "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvM",
+ "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO16invalidAccountIdyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO16invalidAccountIdyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "invalidInstitution",
- "printedName": "invalidInstitution",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidInstitutionyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidInstitutionyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit0A5EventV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "tooManyVerificationAttempts",
- "printedName": "tooManyVerificationAttempts",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(eventName:metadata:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO27tooManyVerificationAttemptsyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO27tooManyVerificationAttemptsyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV9eventName8metadataAcA0cE0O_AA0C8MetadataVtcfc",
+ "mangledName": "$s7LinkKit0A5EventV9eventName8metadataAcA0cE0O_AA0C8MetadataVtcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> (Swift.String) -> LinkKit.InvalidInputErrorCode",
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A5EventV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit0A5EventV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "CodingKeys",
+ "printedName": "CodingKeys",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "eventName",
+ "printedName": "eventName",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String) -> LinkKit.InvalidInputErrorCode",
+ "printedName": "(LinkKit.LinkEvent.CodingKeys.Type) -> LinkKit.LinkEvent.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.LinkEvent.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ]
}
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO9eventNameyA2EmF",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO9eventNameyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
+ },
+ {
+ "kind": "Var",
+ "name": "metadata",
+ "printedName": "metadata",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkEvent.CodingKeys.Type) -> LinkKit.LinkEvent.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.LinkEvent.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8metadatayA2EmF",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8metadatayA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ },
{
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.LinkEvent.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueAESgSS_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
},
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6stringACSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "children": [
+ "kind": "Var",
+ "name": "rawValue",
+ "printedName": "rawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueSSvp",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueSSvg",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
+ "kind": "Var",
+ "name": "stringValue",
+ "printedName": "stringValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueSSvp",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueSSvg",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(stringValue:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.LinkEvent.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
"name": "String",
@@ -33813,86 +32217,200 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO11descriptionSSvg",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueAESgSS_tcfc",
"moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidApiKeysString",
- "printedName": "invalidApiKeysString",
- "children": [
+ "implicit": true,
+ "init_kind": "Designated"
+ },
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "Var",
+ "name": "intValue",
+ "printedName": "intValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueSiSgvp",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueSiSgvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueSiSgvg",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueSiSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(intValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.LinkEvent.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueAESgSi_tcfc",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueAESgSi_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvpZ",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "enumRawTypeName": "String",
+ "isEnumExhaustive": true,
+ "conformances": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CodingKey",
+ "printedName": "CodingKey",
+ "usr": "s:s9CodingKeyP",
+ "mangledName": "$ss9CodingKeyP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
{
"kind": "Var",
- "name": "unauthorizedEnvironmentString",
- "printedName": "unauthorizedEnvironmentString",
+ "name": "dateFormatter",
+ "printedName": "dateFormatter",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ISO8601DateFormatter",
+ "printedName": "Foundation.ISO8601DateFormatter",
+ "usr": "c:objc(cs)NSISO8601DateFormatter"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvpZ",
+ "usr": "s:7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvpZ",
+ "mangledName": "$s7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
"HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "HasStorage"
],
+ "isFromExtension": true,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -33903,153 +32421,46 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ISO8601DateFormatter",
+ "printedName": "Foundation.ISO8601DateFormatter",
+ "usr": "c:objc(cs)NSISO8601DateFormatter"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvgZ",
+ "usr": "s:7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvgZ",
+ "mangledName": "$s7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
+ "isFromExtension": true,
"accessorKind": "get"
}
]
},
{
- "kind": "Var",
- "name": "invalidAccessTokenString",
- "printedName": "invalidAccessTokenString",
+ "kind": "Function",
+ "name": "from",
+ "printedName": "from(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidPublicTokenString",
- "printedName": "invalidPublicTokenString",
- "children": [
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidProductString",
- "printedName": "invalidProductString",
- "children": [
+ "name": "Link_Workflow_Nodes_Panes_SDKEvent",
+ "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_SDKEvent",
+ "usr": "s:13WorkflowProto05Link_A21_Nodes_Panes_SDKEventV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -34058,168 +32469,48 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidAccountIdString",
- "printedName": "invalidAccountIdString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A5EventV4fromyAC13WorkflowProto0a1_E21_Nodes_Panes_SDKEventV_SSSgtFZ",
+ "mangledName": "$s7LinkKit0A5EventV4fromyAC13WorkflowProto0a1_E21_Nodes_Panes_SDKEventV_SSSgtFZ",
"moduleName": "LinkKit",
"static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "invalidInstitutionString",
- "printedName": "invalidInstitutionString",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "tooManyVerificationAttemptsString",
- "printedName": "tooManyVerificationAttemptsString",
- "children": [
+ "kind": "TypeNominal",
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A5EventV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit0A5EventV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
@@ -34228,23 +32519,18 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInvalidInputErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInvalidInputErrorCode",
- "printedName": "LinkKit.PLKInvalidInputErrorCode",
- "usr": "c:@E@PLKInvalidInputErrorCode"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKLinkEvent",
+ "printedName": "LinkKit.PLKLinkEvent",
+ "usr": "c:objc(cs)PLKLinkEvent"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "usr": "s:7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvp",
+ "mangledName": "$s7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvp",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
"isFromExtension": true,
"accessors": [
{
@@ -34254,22 +32540,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInvalidInputErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInvalidInputErrorCode",
- "printedName": "LinkKit.PLKInvalidInputErrorCode",
- "usr": "c:@E@PLKInvalidInputErrorCode"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKLinkEvent",
+ "printedName": "LinkKit.PLKLinkEvent",
+ "usr": "c:objc(cs)PLKLinkEvent"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "usr": "s:7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvg",
+ "mangledName": "$s7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
@@ -34277,68 +32555,76 @@
]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit0A5EventV",
+ "mangledName": "$s7LinkKit0A5EventV",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "RateLimitErrorCode",
- "printedName": "RateLimitErrorCode",
+ "name": "Product",
+ "printedName": "Product",
"children": [
{
"kind": "Var",
- "name": "accountsLimit",
- "printedName": "accountsLimit",
+ "name": "assets",
+ "printedName": "assets",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34346,8 +32632,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO6assetsyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO6assetsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34355,30 +32641,30 @@
},
{
"kind": "Var",
- "name": "additionLimit",
- "printedName": "additionLimit",
+ "name": "auth",
+ "printedName": "auth",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34386,8 +32672,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO4authyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO4authyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34395,30 +32681,30 @@
},
{
"kind": "Var",
- "name": "authLimit",
- "printedName": "authLimit",
+ "name": "depositSwitch",
+ "printedName": "depositSwitch",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34426,8 +32712,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04authD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO13depositSwitchyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO13depositSwitchyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34435,30 +32721,30 @@
},
{
"kind": "Var",
- "name": "identityLimit",
- "printedName": "identityLimit",
+ "name": "identity",
+ "printedName": "identity",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34466,8 +32752,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO8identityyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO8identityyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34475,30 +32761,30 @@
},
{
"kind": "Var",
- "name": "incomeLimit",
- "printedName": "incomeLimit",
+ "name": "income",
+ "printedName": "income",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34506,8 +32792,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO6incomeyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO6incomeyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34515,30 +32801,30 @@
},
{
"kind": "Var",
- "name": "itemGetLimit",
- "printedName": "itemGetLimit",
+ "name": "investments",
+ "printedName": "investments",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34546,8 +32832,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO11investmentsyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO11investmentsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34555,30 +32841,30 @@
},
{
"kind": "Var",
- "name": "rateLimit",
- "printedName": "rateLimit",
+ "name": "liabilities",
+ "printedName": "liabilities",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34586,8 +32872,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO11liabilitiesyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO11liabilitiesyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34595,30 +32881,30 @@
},
{
"kind": "Var",
- "name": "transactionsLimit",
- "printedName": "transactionsLimit",
+ "name": "liabilitiesReport",
+ "printedName": "liabilitiesReport",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34626,8 +32912,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO17liabilitiesReportyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO17liabilitiesReportyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34635,43 +32921,30 @@
},
{
"kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "name": "paymentInitiation",
+ "printedName": "paymentInitiation",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> (Swift.String) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.RateLimitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34679,36 +32952,52 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit7ProductO17paymentInitiationyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO17paymentInitiationyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
+ "kind": "Var",
+ "name": "transactions",
+ "printedName": "transactions",
"children": [
{
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.Product.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO6stringACSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit7ProductO12transactionsyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO12transactionsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
@@ -34723,8 +33012,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit7ProductO11descriptionSSvp",
+ "mangledName": "$s7LinkKit7ProductO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -34743,8 +33032,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit7ProductO11descriptionSSvg",
+ "mangledName": "$s7LinkKit7ProductO11descriptionSSvg",
"moduleName": "LinkKit",
"accessorKind": "get"
}
@@ -34752,8 +33041,8 @@
},
{
"kind": "Var",
- "name": "accountsLimitString",
- "printedName": "accountsLimitString",
+ "name": "assetsString",
+ "printedName": "assetsString",
"children": [
{
"kind": "TypeNominal",
@@ -34763,8 +33052,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO12assetsStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO12assetsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34788,8 +33077,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO12assetsStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO12assetsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34802,8 +33091,8 @@
},
{
"kind": "Var",
- "name": "additionLimitString",
- "printedName": "additionLimitString",
+ "name": "authString",
+ "printedName": "authString",
"children": [
{
"kind": "TypeNominal",
@@ -34813,8 +33102,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO10authStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO10authStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34838,8 +33127,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO10authStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO10authStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34852,8 +33141,8 @@
},
{
"kind": "Var",
- "name": "authLimitString",
- "printedName": "authLimitString",
+ "name": "depositSwitchString",
+ "printedName": "depositSwitchString",
"children": [
{
"kind": "TypeNominal",
@@ -34863,8 +33152,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04authD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO19depositSwitchStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO19depositSwitchStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34888,8 +33177,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04authD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO19depositSwitchStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO19depositSwitchStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34902,8 +33191,8 @@
},
{
"kind": "Var",
- "name": "identityLimitString",
- "printedName": "identityLimitString",
+ "name": "identityString",
+ "printedName": "identityString",
"children": [
{
"kind": "TypeNominal",
@@ -34913,8 +33202,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO14identityStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO14identityStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34938,8 +33227,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO14identityStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO14identityStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34952,8 +33241,8 @@
},
{
"kind": "Var",
- "name": "incomeLimitString",
- "printedName": "incomeLimitString",
+ "name": "incomeString",
+ "printedName": "incomeString",
"children": [
{
"kind": "TypeNominal",
@@ -34963,8 +33252,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO12incomeStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO12incomeStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34988,8 +33277,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO12incomeStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO12incomeStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -35002,8 +33291,8 @@
},
{
"kind": "Var",
- "name": "itemGetLimitString",
- "printedName": "itemGetLimitString",
+ "name": "investmentsString",
+ "printedName": "investmentsString",
"children": [
{
"kind": "TypeNominal",
@@ -35013,8 +33302,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO17investmentsStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO17investmentsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -35038,8 +33327,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO17investmentsStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO17investmentsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -35052,8 +33341,8 @@
},
{
"kind": "Var",
- "name": "rateLimitString",
- "printedName": "rateLimitString",
+ "name": "liabilitiesString",
+ "printedName": "liabilitiesString",
"children": [
{
"kind": "TypeNominal",
@@ -35063,8 +33352,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO17liabilitiesStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO17liabilitiesStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -35088,8 +33377,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO17liabilitiesStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO17liabilitiesStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -35102,8 +33391,8 @@
},
{
"kind": "Var",
- "name": "transactionsLimitString",
- "printedName": "transactionsLimitString",
+ "name": "liabilitiesReportString",
+ "printedName": "liabilitiesReportString",
"children": [
{
"kind": "TypeNominal",
@@ -35113,8 +33402,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO23liabilitiesReportStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO23liabilitiesReportStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -35138,8 +33427,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO23liabilitiesReportStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO23liabilitiesReportStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -35152,257 +33441,8 @@
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKRateLimitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKRateLimitErrorCode",
- "printedName": "LinkKit.PLKRateLimitErrorCode",
- "usr": "c:@E@PLKRateLimitErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvp",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKRateLimitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKRateLimitErrorCode",
- "printedName": "LinkKit.PLKRateLimitErrorCode",
- "usr": "c:@E@PLKRateLimitErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvg",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit18RateLimitErrorCodeO",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApiErrorCode",
- "printedName": "ApiErrorCode",
- "children": [
- {
- "kind": "Var",
- "name": "internalServerError",
- "printedName": "internalServerError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ApiErrorCode.Type) -> LinkKit.ApiErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ApiErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD0yA2CmF",
- "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "plannedMaintenance",
- "printedName": "plannedMaintenance",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ApiErrorCode.Type) -> LinkKit.ApiErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ApiErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit12ApiErrorCodeO18plannedMaintenanceyA2CmF",
- "mangledName": "$s7LinkKit12ApiErrorCodeO18plannedMaintenanceyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ApiErrorCode.Type) -> (Swift.String) -> LinkKit.ApiErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ApiErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ApiErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit12ApiErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit12ApiErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit12ApiErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit12ApiErrorCodeO6stringACSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "paymentInitiationString",
+ "printedName": "paymentInitiationString",
"children": [
{
"kind": "TypeNominal",
@@ -35412,12 +33452,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ApiErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit12ApiErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit7ProductO23paymentInitiationStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO23paymentInitiationStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -35432,17 +33477,22 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ApiErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit12ApiErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit7ProductO23paymentInitiationStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO23paymentInitiationStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "internalServerErrorString",
- "printedName": "internalServerErrorString",
+ "name": "transactionsString",
+ "printedName": "transactionsString",
"children": [
{
"kind": "TypeNominal",
@@ -35452,8 +33502,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD6StringSSvpZ",
- "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO18transactionsStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO18transactionsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -35477,8 +33527,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD6StringSSvgZ",
- "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO18transactionsStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO18transactionsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -35490,29 +33540,54 @@
]
},
{
- "kind": "Var",
- "name": "plannedMaintenanceString",
- "printedName": "plannedMaintenanceString",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvpZ",
- "mangledName": "$s7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7ProductO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit7ProductO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "hashValue",
+ "printedName": "hashValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
],
- "isLet": true,
- "hasStorage": true,
+ "declKind": "Var",
+ "usr": "s:7LinkKit7ProductO9hashValueSivp",
+ "mangledName": "$s7LinkKit7ProductO9hashValueSivp",
+ "moduleName": "LinkKit",
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -35521,49 +33596,71 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvgZ",
- "mangledName": "$s7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvgZ",
+ "usr": "s:7LinkKit7ProductO9hashValueSivg",
+ "mangledName": "$s7LinkKit7ProductO9hashValueSivg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
+ {
+ "kind": "Function",
+ "name": "hash",
+ "printedName": "hash(into:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit7ProductO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit7ProductO4hash4intoys6HasherVz_tF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
+ },
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "allCases",
+ "printedName": "allCases",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKApiErrorCode?",
+ "name": "Array",
+ "printedName": "[LinkKit.Product]",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKApiErrorCode",
- "printedName": "LinkKit.PLKApiErrorCode",
- "usr": "c:@E@PLKApiErrorCode"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
],
- "usr": "s:Sq"
+ "usr": "s:Sa"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvp",
- "mangledName": "$s7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvp",
+ "usr": "s:7LinkKit7ProductO8allCasesSayACGvpZ",
+ "mangledName": "$s7LinkKit7ProductO8allCasesSayACGvpZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -35572,43 +33669,52 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKApiErrorCode?",
+ "name": "Array",
+ "printedName": "[LinkKit.Product]",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKApiErrorCode",
- "printedName": "LinkKit.PLKApiErrorCode",
- "usr": "c:@E@PLKApiErrorCode"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
],
- "usr": "s:Sq"
+ "usr": "s:Sa"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvg",
- "mangledName": "$s7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvg",
+ "usr": "s:7LinkKit7ProductO8allCasesSayACGvgZ",
+ "mangledName": "$s7LinkKit7ProductO8allCasesSayACGvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
"accessorKind": "get"
}
]
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit12ApiErrorCodeO",
- "mangledName": "$s7LinkKit12ApiErrorCodeO",
+ "usr": "s:7LinkKit7ProductO",
+ "mangledName": "$s7LinkKit7ProductO",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
},
{
"kind": "Conformance",
@@ -35619,918 +33725,972 @@
},
{
"kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ItemErrorCode",
- "printedName": "ItemErrorCode",
- "children": [
- {
- "kind": "Var",
- "name": "insufficientCredentials",
- "printedName": "insufficientCredentials",
+ "name": "CaseIterable",
+ "printedName": "CaseIterable",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeWitness",
+ "name": "AllCases",
+ "printedName": "AllCases",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "name": "Array",
+ "printedName": "[LinkKit.Product]",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
- ]
+ ],
+ "usr": "s:Sa"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO23insufficientCredentialsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23insufficientCredentialsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidCredentials",
- "printedName": "invalidCredentials",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "usr": "s:s12CaseIterableP",
+ "mangledName": "$ss12CaseIterableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LoadingPaneViewController",
+ "printedName": "LoadingPaneViewController",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(with:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LoadingPaneViewController",
+ "printedName": "LinkKit.LoadingPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LoadingViewModel",
+ "printedName": "Workflow.LoadingViewModel",
+ "usr": "s:8Workflow16LoadingViewModelC"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO18invalidCredentialsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO18invalidCredentialsyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit25LoadingPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
+ "Custom",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "invalidMfa",
- "printedName": "invalidMfa",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.LoadingPaneViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "LoadingPaneViewController",
+ "printedName": "LinkKit.LoadingPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO10invalidMfayA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO10invalidMfayA2CmF",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
"declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "invalidSendMethod",
- "printedName": "invalidSendMethod",
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO17invalidSendMethodyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO17invalidSendMethodyA2CmF",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC11viewDidLoadyyF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "invalidUpdatedUsername",
- "printedName": "invalidUpdatedUsername",
+ "kind": "Function",
+ "name": "viewWillAppear",
+ "printedName": "viewWillAppear(_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO22invalidUpdatedUsernameyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO22invalidUpdatedUsernameyA2CmF",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewWillAppear:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC14viewWillAppearyySbF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewWillAppear:",
"declAttributes": [
- "RawDocComment"
- ]
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "itemLocked",
- "printedName": "itemLocked",
+ "kind": "Function",
+ "name": "viewDidAppear",
+ "printedName": "viewDidAppear(_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO10itemLockedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO10itemLockedyA2CmF",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidAppear:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC13viewDidAppearyySbF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidAppear:",
"declAttributes": [
- "RawDocComment"
- ]
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "itemLoginRequired",
- "printedName": "itemLoginRequired",
+ "kind": "Function",
+ "name": "viewDidDisappear",
+ "printedName": "viewDidDisappear(_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO17itemLoginRequiredyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO17itemLoginRequiredyA2CmF",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidDisappear:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC16viewDidDisappearyySbF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidDisappear:",
"declAttributes": [
- "RawDocComment"
- ]
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "itemNoError",
- "printedName": "itemNoError",
+ "name": "activityIndicatorView",
+ "printedName": "activityIndicatorView",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "PlaidActivityIndicator",
+ "printedName": "Threads.PlaidActivityIndicator",
+ "usr": "c:@M@Threads@objc(cs)PlaidActivityIndicator"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD0yA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD0yA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit25LoadingPaneViewControllerC017activityIndicatorE033_02203F4AD901BE57F27AD614C29CA913LL7Threads013PlaidActivityH0Cvp",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC017activityIndicatorE033_02203F4AD901BE57F27AD614C29CA913LL7Threads013PlaidActivityH0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "itemNotSupported",
- "printedName": "itemNotSupported",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "LoadingViewModel",
+ "printedName": "Workflow.LoadingViewModel",
+ "usr": "s:8Workflow16LoadingViewModelC"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO16itemNotSupportedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16itemNotSupportedyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit25LoadingPaneViewControllerC9viewModel33_02203F4AD901BE57F27AD614C29CA913LL8Workflow0ceH0Cvp",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC9viewModel33_02203F4AD901BE57F27AD614C29CA913LL8Workflow0ceH0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "RawDocComment"
- ]
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "incorrectDepositAmounts",
- "printedName": "incorrectDepositAmounts",
+ "name": "timer",
+ "printedName": "timer",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Timer?",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "Timer",
+ "printedName": "Foundation.Timer",
+ "usr": "c:objc(cs)NSTimer"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO23incorrectDepositAmountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23incorrectDepositAmountsyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit25LoadingPaneViewControllerC5timer33_02203F4AD901BE57F27AD614C29CA913LLSo7NSTimerCSgvp",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC5timer33_02203F4AD901BE57F27AD614C29CA913LLSo7NSTimerCSgvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "RawDocComment"
- ]
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 2,
+ "hasStorage": true
},
{
- "kind": "Var",
- "name": "userSetupRequired",
- "printedName": "userSetupRequired",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeNominal",
+ "name": "LoadingPaneViewController",
+ "printedName": "LinkKit.LoadingPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO17userSetupRequiredyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO17userSetupRequiredyA2CmF",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "RawDocComment"
- ]
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkTokenConfiguration",
+ "children": [
{
"kind": "Var",
- "name": "mfaNotSupported",
- "printedName": "mfaNotSupported",
+ "name": "token",
+ "printedName": "token",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO15mfaNotSupportedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO15mfaNotSupportedyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A18TokenConfigurationV5tokenSSvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV5tokenSSvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV5tokenSSvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV5tokenSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
]
},
{
"kind": "Var",
- "name": "noAccounts",
- "printedName": "noAccounts",
+ "name": "onSuccess",
+ "printedName": "onSuccess",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "printedName": "(LinkKit.LinkSuccess) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO10noAccountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO10noAccountsyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "noAuthAccounts",
- "printedName": "noAuthAccounts",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkSuccess) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO14noAuthAccountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO14noAuthAccountsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "noInvestmentAccounts",
- "printedName": "noInvestmentAccounts",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkSuccess) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
}
]
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvs",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0VcvM",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0VcvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO20noInvestmentAccountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO20noInvestmentAccountsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "noLiabilityAccounts",
- "printedName": "noLiabilityAccounts",
+ "name": "onExit",
+ "printedName": "onExit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "printedName": "(LinkKit.LinkExit) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO19noLiabilityAccountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO19noLiabilityAccountsyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "productNotReady",
- "printedName": "productNotReady",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkExit) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO15productNotReadyyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO15productNotReadyyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "productsNotSupported",
- "printedName": "productsNotSupported",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkExit) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
}
]
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvs",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0VcvM",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0VcvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO20productsNotSupportedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO20productsNotSupportedyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "instantMatchFailed",
- "printedName": "instantMatchFailed",
+ "name": "onEvent",
+ "printedName": "onEvent",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "printedName": "(LinkKit.LinkEvent) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO18instantMatchFailedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO18instantMatchFailedyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> (Swift.String) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ItemErrorCode",
+ "printedName": "(LinkKit.LinkEvent) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
}
]
- },
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkEvent) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvs",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ItemErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit13ItemErrorCodeO6stringACSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit13ItemErrorCodeO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit13ItemErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0VcvM",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0VcvM",
"moduleName": "LinkKit",
- "accessorKind": "get"
+ "implicit": true,
+ "accessorKind": "_modify"
}
]
},
{
"kind": "Var",
- "name": "insufficientCredentialsString",
- "printedName": "insufficientCredentialsString",
+ "name": "noLoadingState",
+ "printedName": "noLoadingState",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvpZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -36540,198 +34700,128 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidCredentialsString",
- "printedName": "invalidCredentialsString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ },
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvs",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvs",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidMfaString",
- "printedName": "invalidMfaString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO16invalidMfaStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16invalidMfaStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "accessorKind": "set"
+ },
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO16invalidMfaStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16invalidMfaStringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvM",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvM",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "accessorKind": "_modify"
}
]
},
{
- "kind": "Var",
- "name": "invalidSendMethodString",
- "printedName": "invalidSendMethodString",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(token:onSuccess:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkSuccess) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV5token9onSuccessACSS_yAA0aG0Vctcfc",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV5token9onSuccessACSS_yAA0aG0Vctcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "invalidUpdatedUsernameString",
- "printedName": "invalidUpdatedUsernameString",
+ "name": "isLinkUIPresentationImmediate",
+ "printedName": "isLinkUIPresentationImmediate",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvpZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV02isA23UIPresentationImmediateSbvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV02isA23UIPresentationImmediateSbvp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -36740,278 +34830,453 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV02isA23UIPresentationImmediateSbvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV02isA23UIPresentationImmediateSbvg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
+ "isFromExtension": true,
"accessorKind": "get"
}
]
},
{
- "kind": "Var",
- "name": "itemLockedString",
- "printedName": "itemLockedString",
+ "kind": "Function",
+ "name": "environment",
+ "printedName": "environment(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO16itemLockedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16itemLockedStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Optional",
+ "printedName": "LinkKit.Environment?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO16itemLockedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16itemLockedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "itemLoginRequiredString",
- "printedName": "itemLoginRequiredString",
- "children": [
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvpZ",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A18TokenConfigurationV11environmentyAA11EnvironmentOSg3LogAHVF",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV11environmentyAA11EnvironmentOSg3LogAHVF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "itemNoErrorString",
- "printedName": "itemNoErrorString",
+ "kind": "Function",
+ "name": "loadSessionConfiguration",
+ "printedName": "loadSessionConfiguration(_:_:_:_:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "OneOf_Configuration",
+ "printedName": "WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration",
+ "usr": "s:13WorkflowProto09Link_Api_cA12StartRequestV19OneOf_ConfigurationO"
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD6StringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A18TokenConfigurationV011loadSessionD0yySS_SS3LogAEVy13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_D0OctF",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV011loadSessionD0yySS_SS3LogAEVy13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_D0OctF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit0A18TokenConfigurationV",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AuthenticationServices",
+ "printedName": "AuthenticationServices",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "os",
+ "printedName": "os",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkHandler",
+ "printedName": "LinkHandler",
+ "children": [
+ {
+ "kind": "TypeDecl",
+ "name": "Dependencies",
+ "printedName": "Dependencies",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "Var",
+ "name": "keyValueStoreServiceFactory",
+ "printedName": "keyValueStoreServiceFactory",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "() -> LinkKit.KeyValueStoreService",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreService",
+ "printedName": "LinkKit.KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ]
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvp",
+ "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "() -> LinkKit.KeyValueStoreService",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreService",
+ "printedName": "LinkKit.KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ]
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvg",
+ "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(keyValueStoreServiceFactory:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Dependencies",
+ "printedName": "LinkKit.LinkHandler.Dependencies",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "() -> LinkKit.KeyValueStoreService",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreService",
+ "printedName": "LinkKit.KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "hasDefaultArg": true
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD6StringSSvgZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAeA03KeyfgH0_pyc_tcfc",
+ "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAeA03KeyfgH0_pyc_tcfc",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
"declAttributes": [
- "Transparent"
+ "AccessControl"
],
- "accessorKind": "get"
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV",
+ "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
{
- "kind": "Var",
- "name": "itemNotSupportedString",
- "printedName": "itemNotSupportedString",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(configuration:environment:dependencies:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkHandler",
+ "printedName": "LinkKit.LinkHandler",
+ "usr": "s:7LinkKit0A7HandlerC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Dependencies",
+ "printedName": "LinkKit.LinkHandler.Dependencies",
+ "hasDefaultArg": true,
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvpZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A7HandlerC13configuration11environment12dependenciesAcA0A18TokenConfigurationV_AA11EnvironmentOAC12DependenciesVtcfc",
+ "mangledName": "$s7LinkKit0A7HandlerC13configuration11environment12dependenciesAcA0A18TokenConfigurationV_AA11EnvironmentOAC12DependenciesVtcfc",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(presentUsing:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7HandlerC4open12presentUsingyAA18PresentationMethodO_tF",
+ "mangledName": "$s7LinkKit0A7HandlerC4open12presentUsingyAA18PresentationMethodO_tF",
+ "moduleName": "LinkKit",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "incorrectDepositAmountsString",
- "printedName": "incorrectDepositAmountsString",
+ "kind": "Function",
+ "name": "resumeAfterTermination",
+ "printedName": "resumeAfterTermination(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7HandlerC22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "mangledName": "$s7LinkKit0A7HandlerC22resumeAfterTermination4fromy10Foundation3URLV_tF",
"moduleName": "LinkKit",
- "static": true,
+ "isOpen": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "createEmbeddedView",
+ "printedName": "createEmbeddedView(presentUsing:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7HandlerC18createEmbeddedView12presentUsingSo6UIViewCAA18PresentationMethodO_tF",
+ "mangledName": "$s7LinkKit0A7HandlerC18createEmbeddedView12presentUsingSo6UIViewCAA18PresentationMethodO_tF",
+ "moduleName": "LinkKit",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "userSetupRequiredString",
- "printedName": "userSetupRequiredString",
+ "name": "linkOpenID",
+ "printedName": "linkOpenID",
"children": [
{
"kind": "TypeNominal",
@@ -37021,16 +35286,18 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC10linkOpenIDSSvp",
+ "mangledName": "$s7LinkKit0A7HandlerC10linkOpenIDSSvp",
"moduleName": "LinkKit",
- "static": true,
+ "isOpen": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
+ "fixedbinaryorder": 0,
"hasStorage": true,
"accessors": [
{
@@ -37046,11 +35313,11 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvgZ",
+ "usr": "s:7LinkKit0A7HandlerC10linkOpenIDSSvg",
+ "mangledName": "$s7LinkKit0A7HandlerC10linkOpenIDSSvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
+ "isOpen": true,
"declAttributes": [
"Transparent"
],
@@ -37060,27 +35327,48 @@
},
{
"kind": "Var",
- "name": "mfaNotSupportedString",
- "printedName": "mfaNotSupportedString",
+ "name": "onSessionCreated",
+ "printedName": "onSessionCreated",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
+ "name": "Optional",
+ "printedName": "((Workflow.Session) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Workflow.Session) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Session",
+ "printedName": "Workflow.Session",
+ "usr": "s:8Workflow7SessionC"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvp",
"moduleName": "LinkKit",
- "static": true,
+ "isOpen": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
+ "fixedbinaryorder": 1,
"hasStorage": true,
"accessors": [
{
@@ -37090,78 +35378,118 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "((Workflow.Session) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Workflow.Session) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Session",
+ "printedName": "Workflow.Session",
+ "usr": "s:8Workflow7SessionC"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvgZ",
+ "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvg",
+ "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
+ "isOpen": true,
"declAttributes": [
"Transparent"
],
"accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "noAccountsString",
- "printedName": "noAccountsString",
- "children": [
+ },
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO16noAccountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16noAccountsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((Workflow.Session) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Workflow.Session) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Session",
+ "printedName": "Workflow.Session",
+ "usr": "s:8Workflow7SessionC"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvs",
+ "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "isOpen": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "set"
+ },
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO16noAccountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16noAccountsStringSSvgZ",
+ "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvM",
+ "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvM",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
+ "isOpen": true,
"declAttributes": [
"Transparent"
],
- "accessorKind": "get"
+ "accessorKind": "_modify"
}
]
},
{
"kind": "Var",
- "name": "noAuthAccountsString",
- "printedName": "noAuthAccountsString",
+ "name": "linkPersistentID",
+ "printedName": "linkPersistentID",
"children": [
{
"kind": "TypeNominal",
@@ -37171,15 +35499,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC16linkPersistentIDSSvp",
+ "mangledName": "$s7LinkKit0A7HandlerC16linkPersistentIDSSvp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 2,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -37196,13 +35524,13 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvgZ",
+ "usr": "s:7LinkKit0A7HandlerC16linkPersistentIDSSvg",
+ "mangledName": "$s7LinkKit0A7HandlerC16linkPersistentIDSSvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
"declAttributes": [
- "Transparent"
+ "Transparent",
+ "Final"
],
"accessorKind": "get"
}
@@ -37210,761 +35538,433 @@
},
{
"kind": "Var",
- "name": "noInvestmentAccountsString",
- "printedName": "noInvestmentAccountsString",
+ "name": "openCallTimestamp",
+ "printedName": "openCallTimestamp",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.Double?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC17openCallTimestamp33_2F35CE8D0F063DC4E7A32246BB6D8185LLSdSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC17openCallTimestamp33_2F35CE8D0F063DC4E7A32246BB6D8185LLSdSgvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "fixedbinaryorder": 3,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "noLiabilityAccountsString",
- "printedName": "noLiabilityAccountsString",
+ "name": "state",
+ "printedName": "state",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "State",
+ "printedName": "LinkKit.LinkHandler.State",
+ "usr": "s:7LinkKit0A7HandlerC5State33_2F35CE8D0F063DC4E7A32246BB6D8185LLO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC5state33_2F35CE8D0F063DC4E7A32246BB6D8185LLAC5StateAELLOvp",
+ "mangledName": "$s7LinkKit0A7HandlerC5state33_2F35CE8D0F063DC4E7A32246BB6D8185LLAC5StateAELLOvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 4,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "pendingRedirectUri",
+ "printedName": "pendingRedirectUri",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC18pendingRedirectUri33_2F35CE8D0F063DC4E7A32246BB6D8185LL10Foundation3URLVSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC18pendingRedirectUri33_2F35CE8D0F063DC4E7A32246BB6D8185LL10Foundation3URLVSgvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 5,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "productNotReadyString",
- "printedName": "productNotReadyString",
+ "name": "configuration",
+ "printedName": "configuration",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO21productNotReadyStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO21productNotReadyStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC13configuration33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0A18TokenConfigurationVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC13configuration33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0A18TokenConfigurationVvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 6,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO21productNotReadyStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO21productNotReadyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "productsNotSupportedString",
- "printedName": "productsNotSupportedString",
+ "name": "environment",
+ "printedName": "environment",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC11environment33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA11EnvironmentOvp",
+ "mangledName": "$s7LinkKit0A7HandlerC11environment33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA11EnvironmentOvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 7,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "instantMatchFailedString",
- "printedName": "instantMatchFailedString",
+ "name": "log",
+ "printedName": "log",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC3log33_2F35CE8D0F063DC4E7A32246BB6D8185LL3LogAFVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC3log33_2F35CE8D0F063DC4E7A32246BB6D8185LL3LogAFVvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 8,
"isLet": true,
- "hasStorage": true,
- "accessors": [
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "keyValueService",
+ "printedName": "keyValueService",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreService",
+ "printedName": "LinkKit.KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC15keyValueService33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA03Keye5StoreF0_pvp",
+ "mangledName": "$s7LinkKit0A7HandlerC15keyValueService33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA03Keye5StoreF0_pvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 9,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "session",
+ "printedName": "session",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.PLKItemErrorCode?",
+ "printedName": "Workflow.Session?",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKItemErrorCode",
- "printedName": "LinkKit.PLKItemErrorCode",
- "usr": "c:@E@PLKItemErrorCode"
+ "name": "Session",
+ "printedName": "Workflow.Session",
+ "usr": "s:8Workflow7SessionC"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvp",
- "mangledName": "$s7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvp",
+ "usr": "s:7LinkKit0A7HandlerC7session33_2F35CE8D0F063DC4E7A32246BB6D8185LL8Workflow7SessionCSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC7session33_2F35CE8D0F063DC4E7A32246BB6D8185LL8Workflow7SessionCSgvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKItemErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKItemErrorCode",
- "printedName": "LinkKit.PLKItemErrorCode",
- "usr": "c:@E@PLKItemErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvg",
- "mangledName": "$s7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit13ItemErrorCodeO",
- "mangledName": "$s7LinkKit13ItemErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "AuthErrorCode",
- "printedName": "AuthErrorCode",
- "children": [
- {
- "kind": "Var",
- "name": "productNotReady",
- "printedName": "productNotReady",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.AuthErrorCode.Type) -> LinkKit.AuthErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.AuthErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13AuthErrorCodeO15productNotReadyyA2CmF",
- "mangledName": "$s7LinkKit13AuthErrorCodeO15productNotReadyyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "verificationExpired",
- "printedName": "verificationExpired",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.AuthErrorCode.Type) -> LinkKit.AuthErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.AuthErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13AuthErrorCodeO19verificationExpiredyA2CmF",
- "mangledName": "$s7LinkKit13AuthErrorCodeO19verificationExpiredyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.AuthErrorCode.Type) -> (Swift.String) -> LinkKit.AuthErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.AuthErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.AuthErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13AuthErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit13AuthErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- },
+ "isInternal": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 10,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "sdkInfo",
+ "printedName": "sdkInfo",
+ "children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "SDKInfoProvider",
+ "printedName": "LinkKit.SDKInfoProvider",
+ "usr": "s:7LinkKit15SDKInfoProviderV"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13AuthErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit13AuthErrorCodeO6stringACSS_tcfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC7sdkInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA15SDKInfoProviderVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC7sdkInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA15SDKInfoProviderVvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
"AccessControl"
],
- "init_kind": "Designated"
+ "fixedbinaryorder": 11,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "deviceInfo",
+ "printedName": "deviceInfo",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "DeviceInfoProvider",
+ "printedName": "LinkKit.DeviceInfoProvider",
+ "usr": "s:7LinkKit18DeviceInfoProviderV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13AuthErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit13AuthErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit0A7HandlerC10deviceInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06DeviceE8ProviderVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC10deviceInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06DeviceE8ProviderVvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
"AccessControl"
],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13AuthErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit13AuthErrorCodeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
+ "fixedbinaryorder": 12,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "productNotReadyString",
- "printedName": "productNotReadyString",
+ "name": "localeInfo",
+ "printedName": "localeInfo",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LocaleInfoProvider",
+ "printedName": "LinkKit.LocaleInfoProvider",
+ "usr": "s:7LinkKit18LocaleInfoProviderV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13AuthErrorCodeO21productNotReadyStringSSvpZ",
- "mangledName": "$s7LinkKit13AuthErrorCodeO21productNotReadyStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC10localeInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06LocaleE8ProviderVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC10localeInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06LocaleE8ProviderVvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 13,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13AuthErrorCodeO21productNotReadyStringSSvgZ",
- "mangledName": "$s7LinkKit13AuthErrorCodeO21productNotReadyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "verificationExpiredString",
- "printedName": "verificationExpiredString",
+ "name": "userAgentProvider",
+ "printedName": "userAgentProvider",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkHTTPServiceUserAgentProvider",
+ "printedName": "LinkKit.LinkHTTPServiceUserAgentProvider",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvpZ",
- "mangledName": "$s7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC17userAgentProvider33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0a15HTTPServiceUsereF0Cvp",
+ "mangledName": "$s7LinkKit0A7HandlerC17userAgentProvider33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0a15HTTPServiceUsereF0Cvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 14,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvgZ",
- "mangledName": "$s7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "paneViewModelObserver",
+ "printedName": "paneViewModelObserver",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.PLKAuthErrorCode?",
+ "printedName": "AppCore.Observer?",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAuthErrorCode",
- "printedName": "LinkKit.PLKAuthErrorCode",
- "usr": "c:@E@PLKAuthErrorCode"
+ "name": "Observer",
+ "printedName": "AppCore.Observer",
+ "usr": "s:7AppCore8ObserverC"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvp",
- "mangledName": "$s7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvp",
+ "usr": "s:7LinkKit0A7HandlerC21paneViewModelObserver33_2F35CE8D0F063DC4E7A32246BB6D8185LL7AppCore0G0CSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC21paneViewModelObserver33_2F35CE8D0F063DC4E7A32246BB6D8185LL7AppCore0G0CSgvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKAuthErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKAuthErrorCode",
- "printedName": "LinkKit.PLKAuthErrorCode",
- "usr": "c:@E@PLKAuthErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvg",
- "mangledName": "$s7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
+ "isInternal": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 15,
+ "hasStorage": true
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit13AuthErrorCodeO",
- "mangledName": "$s7LinkKit13AuthErrorCodeO",
+ "declKind": "Class",
+ "usr": "s:7LinkKit0A7HandlerC",
+ "mangledName": "$s7LinkKit0A7HandlerC",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "Handler",
+ "printedName": "Handler",
+ "usr": "s:7LinkKit7HandlerP",
+ "mangledName": "$s7LinkKit7HandlerP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "AssetReportErrorCode",
- "printedName": "AssetReportErrorCode",
+ "name": "ViewName",
+ "printedName": "ViewName",
"children": [
{
"kind": "Var",
- "name": "productNotEnabled",
- "printedName": "productNotEnabled",
+ "name": "acceptTOS",
+ "printedName": "acceptTOS",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -37972,8 +35972,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO17productNotEnabledyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO17productNotEnabledyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO9acceptTOSyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9acceptTOSyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -37981,30 +35981,30 @@
},
{
"kind": "Var",
- "name": "dataUnavailable",
- "printedName": "dataUnavailable",
+ "name": "connected",
+ "printedName": "connected",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38012,8 +36012,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO15dataUnavailableyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO15dataUnavailableyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO9connectedyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9connectedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38021,30 +36021,30 @@
},
{
"kind": "Var",
- "name": "productNotReady",
- "printedName": "productNotReady",
+ "name": "consent",
+ "printedName": "consent",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38052,8 +36052,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO15productNotReadyyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO15productNotReadyyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO7consentyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO7consentyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38061,30 +36061,30 @@
},
{
"kind": "Var",
- "name": "assetReportGenerationFailed",
- "printedName": "assetReportGenerationFailed",
+ "name": "credential",
+ "printedName": "credential",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38092,8 +36092,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD16GenerationFailedyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD16GenerationFailedyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO10credentialyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO10credentialyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38101,30 +36101,30 @@
},
{
"kind": "Var",
- "name": "invalidParent",
- "printedName": "invalidParent",
+ "name": "dataTransparency",
+ "printedName": "dataTransparency",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38132,8 +36132,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO13invalidParentyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO13invalidParentyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO16dataTransparencyyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO16dataTransparencyyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38141,30 +36141,30 @@
},
{
"kind": "Var",
- "name": "insightsNotEnabled",
- "printedName": "insightsNotEnabled",
+ "name": "dataTransparencyConsent",
+ "printedName": "dataTransparencyConsent",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38172,8 +36172,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO18insightsNotEnabledyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO18insightsNotEnabledyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO23dataTransparencyConsentyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO23dataTransparencyConsentyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38181,30 +36181,30 @@
},
{
"kind": "Var",
- "name": "insightsPreviouslyNotEnabled",
- "printedName": "insightsPreviouslyNotEnabled",
+ "name": "documentaryVerification",
+ "printedName": "documentaryVerification",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38212,8 +36212,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO28insightsPreviouslyNotEnabledyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO28insightsPreviouslyNotEnabledyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO23documentaryVerificationyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO23documentaryVerificationyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38221,43 +36221,30 @@
},
{
"kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "name": "error",
+ "printedName": "error",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> (Swift.String) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.AssetReportErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38265,545 +36252,516 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit8ViewNameO5erroryA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO5erroryA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
+ "kind": "Var",
+ "name": "exit",
+ "printedName": "exit",
"children": [
{
- "kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO6stringACSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO4exityA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO4exityA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "kycCheck",
+ "printedName": "kycCheck",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO8kycCheckyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO8kycCheckyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "productNotEnabledString",
- "printedName": "productNotEnabledString",
+ "name": "loading",
+ "printedName": "loading",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO7loadingyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO7loadingyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "dataUnavailableString",
- "printedName": "dataUnavailableString",
+ "name": "matchedConsent",
+ "printedName": "matchedConsent",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO14matchedConsentyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO14matchedConsentyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "matchedCredential",
+ "printedName": "matchedCredential",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO17matchedCredentialyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO17matchedCredentialyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "productNotReadyString",
- "printedName": "productNotReadyString",
+ "name": "matchedMFA",
+ "printedName": "matchedMFA",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO10matchedMFAyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO10matchedMFAyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mfa",
+ "printedName": "mfa",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO3mfayA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO3mfayA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "assetReportGenerationFailedString",
- "printedName": "assetReportGenerationFailedString",
+ "name": "numbers",
+ "printedName": "numbers",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO7numbersyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO7numbersyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "invalidParentString",
- "printedName": "invalidParentString",
+ "name": "numbersSelectInstitution",
+ "printedName": "numbersSelectInstitution",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO24numbersSelectInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO24numbersSelectInstitutionyA2CmF",
+ "moduleName": "LinkKit"
},
{
"kind": "Var",
- "name": "insightsNotEnabledString",
- "printedName": "insightsNotEnabledString",
+ "name": "oauth",
+ "printedName": "oauth",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO5oauthyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO5oauthyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "insightsPreviouslyNotEnabledString",
- "printedName": "insightsPreviouslyNotEnabledString",
+ "name": "recaptcha",
+ "printedName": "recaptcha",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO9recaptchayA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9recaptchayA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "riskCheck",
+ "printedName": "riskCheck",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKAssetReportErrorCode?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAssetReportErrorCode",
- "printedName": "LinkKit.PLKAssetReportErrorCode",
- "usr": "c:@E@PLKAssetReportErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvp",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKAssetReportErrorCode?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAssetReportErrorCode",
- "printedName": "LinkKit.PLKAssetReportErrorCode",
- "usr": "c:@E@PLKAssetReportErrorCode"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvg",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO9riskCheckyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9riskCheckyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit20AssetReportErrorCodeO",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InstitutionErrorCode",
- "printedName": "InstitutionErrorCode",
- "children": [
{
"kind": "Var",
- "name": "institutionDown",
- "printedName": "institutionDown",
+ "name": "screening",
+ "printedName": "screening",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38811,8 +36769,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO15institutionDownyA2CmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO15institutionDownyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO9screeningyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9screeningyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38820,30 +36778,30 @@
},
{
"kind": "Var",
- "name": "institutionNotResponding",
- "printedName": "institutionNotResponding",
+ "name": "selectAccount",
+ "printedName": "selectAccount",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38851,8 +36809,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO24institutionNotRespondingyA2CmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO24institutionNotRespondingyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO13selectAccountyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO13selectAccountyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38860,30 +36818,30 @@
},
{
"kind": "Var",
- "name": "institutionNotAvailable",
- "printedName": "institutionNotAvailable",
+ "name": "selectAuthType",
+ "printedName": "selectAuthType",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38891,8 +36849,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO23institutionNotAvailableyA2CmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO23institutionNotAvailableyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO14selectAuthTypeyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO14selectAuthTypeyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38900,30 +36858,30 @@
},
{
"kind": "Var",
- "name": "institutionNoLongerSupported",
- "printedName": "institutionNoLongerSupported",
+ "name": "submitPhone",
+ "printedName": "submitPhone",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38931,8 +36889,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO28institutionNoLongerSupportedyA2CmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO28institutionNoLongerSupportedyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO11submitPhoneyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO11submitPhoneyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38940,43 +36898,30 @@
},
{
"kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "name": "verifyPhone",
+ "printedName": "verifyPhone",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> (Swift.String) -> LinkKit.InstitutionErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.InstitutionErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38984,428 +36929,505 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit8ViewNameO11verifyPhoneyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO11verifyPhoneyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
+ "kind": "Var",
+ "name": "selectSavedInstitution",
+ "printedName": "selectSavedInstitution",
"children": [
{
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO6stringACSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO22selectSavedInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO22selectSavedInstitutionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "selectSavedAccount",
+ "printedName": "selectSavedAccount",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO18selectSavedAccountyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO18selectSavedAccountyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "institutionDownString",
- "printedName": "institutionDownString",
+ "name": "selectBrand",
+ "printedName": "selectBrand",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvpZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvgZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO11selectBrandyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO11selectBrandyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "institutionNotRespondingString",
- "printedName": "institutionNotRespondingString",
+ "name": "selectInstitution",
+ "printedName": "selectInstitution",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvpZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvgZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO17selectInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO17selectInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "institutionNotAvailableString",
- "printedName": "institutionNotAvailableString",
+ "name": "selfieCheck",
+ "printedName": "selfieCheck",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvpZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO11selfieCheckyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO11selfieCheckyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "uploadDocuments",
+ "printedName": "uploadDocuments",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvgZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO15uploadDocumentsyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO15uploadDocumentsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "institutionNoLongerSupportedString",
- "printedName": "institutionNoLongerSupportedString",
+ "name": "submitDocuments",
+ "printedName": "submitDocuments",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvpZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO15submitDocumentsyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO15submitDocumentsyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "submitDocumentsSuccess",
+ "printedName": "submitDocumentsSuccess",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvgZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO22submitDocumentsSuccessyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO22submitDocumentsSuccessyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "submitDocumentsError",
+ "printedName": "submitDocumentsError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInstitutionErrorCode?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKInstitutionErrorCode",
- "printedName": "LinkKit.PLKInstitutionErrorCode",
- "usr": "c:@E@PLKInstitutionErrorCode"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvp",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO20submitDocumentsErroryA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO20submitDocumentsErroryA2CmF",
"moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "verifySMS",
+ "printedName": "verifySMS",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInstitutionErrorCode?",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKInstitutionErrorCode",
- "printedName": "LinkKit.PLKInstitutionErrorCode",
- "usr": "c:@E@PLKInstitutionErrorCode"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvg",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO9verifySMSyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9verifySMSyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit20InstitutionErrorCodeO",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
},
{
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> (Swift.String) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit8ViewNameO7unknownyACSScACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "GithubRelease",
- "printedName": "GithubRelease",
- "children": [
- {
- "kind": "Var",
- "name": "htmlURL",
- "printedName": "htmlURL",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV7htmlURLSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV7htmlURLSSvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit8ViewNameO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit8ViewNameO4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
+ "AccessControl"
],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV7htmlURLSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV7htmlURLSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "tagName",
- "printedName": "tagName",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
{
"kind": "TypeNominal",
"name": "String",
@@ -39413,45 +37435,19 @@
"usr": "s:SS"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV7tagNameSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV7tagNameSSvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit8ViewNameO8rawValueACSS_tcfc",
+ "mangledName": "$s7LinkKit8ViewNameO8rawValueACSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
+ "AccessControl"
],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV7tagNameSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV7tagNameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "name",
- "printedName": "name",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
@@ -39461,15 +37457,12 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV4nameSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV4nameSSvp",
+ "usr": "s:7LinkKit8ViewNameO11descriptionSSvp",
+ "mangledName": "$s7LinkKit8ViewNameO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
+ "AccessControl"
],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -39484,133 +37477,97 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV4nameSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV4nameSSvg",
+ "usr": "s:7LinkKit8ViewNameO11descriptionSSvg",
+ "mangledName": "$s7LinkKit8ViewNameO11descriptionSSvg",
"moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
- "kind": "Var",
- "name": "draft",
- "printedName": "draft",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV5draftSbvp",
- "mangledName": "$s7LinkKit13GithubReleaseV5draftSbvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit8ViewNameO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit8ViewNameO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
+ "AccessControl"
],
- "fixedbinaryorder": 3,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV5draftSbvg",
- "mangledName": "$s7LinkKit13GithubReleaseV5draftSbvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "prerelease",
- "printedName": "prerelease",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
"name": "Bool",
"printedName": "Swift.Bool",
"usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV10prereleaseSbvp",
- "mangledName": "$s7LinkKit13GithubReleaseV10prereleaseSbvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit8ViewNameO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit8ViewNameO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage"
- ],
- "fixedbinaryorder": 4,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV10prereleaseSbvg",
- "mangledName": "$s7LinkKit13GithubReleaseV10prereleaseSbvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "publishedAt",
- "printedName": "publishedAt",
+ "name": "toObjCValue",
+ "printedName": "toObjCValue",
"children": [
{
"kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKViewNameValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKViewNameValue",
+ "printedName": "LinkKit.PLKViewNameValue",
+ "usr": "c:@E@PLKViewNameValue"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvp",
- "mangledName": "$s7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvp",
+ "usr": "s:7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvp",
+ "mangledName": "$s7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage"
- ],
- "fixedbinaryorder": 5,
- "isLet": true,
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -39619,45 +37576,45 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKViewNameValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKViewNameValue",
+ "printedName": "LinkKit.PLKViewNameValue",
+ "usr": "c:@E@PLKViewNameValue"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvg",
- "mangledName": "$s7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvg",
+ "usr": "s:7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvg",
+ "mangledName": "$s7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvg",
"moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
+ "isFromExtension": true,
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "body",
- "printedName": "body",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKViewName",
+ "printedName": "LinkKit.PLKViewName",
+ "usr": "c:objc(cs)PLKViewName"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV4bodySSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV4bodySSvp",
+ "usr": "s:7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvp",
+ "mangledName": "$s7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage"
- ],
- "fixedbinaryorder": 6,
- "isLet": true,
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -39666,384 +37623,165 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKViewName",
+ "printedName": "LinkKit.PLKViewName",
+ "usr": "c:objc(cs)PLKViewName"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV4bodySSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV4bodySSvg",
+ "usr": "s:7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvg",
+ "mangledName": "$s7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvg",
"moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
+ "isFromExtension": true,
"accessorKind": "get"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit8ViewNameO",
+ "mangledName": "$s7LinkKit8ViewNameO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KeyValueStoreKey",
+ "printedName": "KeyValueStoreKey",
+ "children": [
{
"kind": "Var",
- "name": "semanticVersion",
- "printedName": "semanticVersion",
+ "name": "linkPersistentID",
+ "printedName": "linkPersistentID",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.SemanticVersion?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.KeyValueStoreKey.Type) -> LinkKit.KeyValueStoreKey",
"children": [
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvp",
- "mangledName": "$s7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvp",
- "moduleName": "LinkKit",
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
+ },
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.SemanticVersion?",
+ "name": "Metatype",
+ "printedName": "LinkKit.KeyValueStoreKey.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvg",
- "mangledName": "$s7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit013KeyValueStoreC0O16linkPersistentIDyA2CmF",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O16linkPersistentIDyA2CmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
},
{
- "kind": "TypeDecl",
- "name": "CodingKeys",
- "printedName": "CodingKeys",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
- "kind": "Var",
- "name": "htmlURL",
- "printedName": "htmlURL",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO7htmlURLyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO7htmlURLyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "tagName",
- "printedName": "tagName",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO7tagNameyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO7tagNameyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "name",
- "printedName": "name",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO4nameyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO4nameyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "draft",
- "printedName": "draft",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO5draftyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO5draftyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 3
- },
- {
- "kind": "Var",
- "name": "prerelease",
- "printedName": "prerelease",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO10prereleaseyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO10prereleaseyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 4
- },
- {
- "kind": "Var",
- "name": "publishedAt",
- "printedName": "publishedAt",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.KeyValueStoreKey?",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11publishedAtyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11publishedAtyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 5
+ "usr": "s:Sq"
},
{
- "kind": "Var",
- "name": "body",
- "printedName": "body",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO4bodyyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO4bodyyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 6
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0ACSgSS_tcfc",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0ACSgSS_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "rawValue",
+ "printedName": "rawValue",
+ "children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.GithubRelease.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueAESgSS_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0SSvp",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0SSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
{
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -40052,37 +37790,50 @@
"usr": "s:SS"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvp",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0SSvg",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0SSvg",
"moduleName": "LinkKit",
"implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit013KeyValueStoreC0O",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "enumRawTypeName": "String",
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
{
- "kind": "Var",
- "name": "stringValue",
- "printedName": "stringValue",
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
"children": [
{
"kind": "TypeNominal",
@@ -40090,53 +37841,36 @@
"printedName": "Swift.String",
"usr": "s:SS"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
]
- },
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KeyValueStoreService",
+ "printedName": "KeyValueStoreService",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "string",
+ "printedName": "string(for:)",
+ "children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringValue:)",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.GithubRelease.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -40144,197 +37878,34 @@
"usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueAESgSS_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "usr": "s:Sq"
},
{
- "kind": "Var",
- "name": "intValue",
- "printedName": "intValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvp",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvg",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(intValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.GithubRelease.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueAESgSi_tcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueAESgSi_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO",
+ "declKind": "Func",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP6string3forSSSgAA0cdeC0O_tF",
+ "mangledName": "$s7LinkKit20KeyValueStoreServiceP6string3forSSSgAA0cdeC0O_tF",
"moduleName": "LinkKit",
- "enumRawTypeName": "String",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "CodingKey",
- "printedName": "CodingKey",
- "usr": "s:s9CodingKeyP",
- "mangledName": "$ss9CodingKeyP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.KeyValueStoreService>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(htmlURL:tagName:name:draft:prerelease:publishedAt:body:)",
+ "kind": "Function",
+ "name": "set",
+ "printedName": "set(_:for:)",
"children": [
{
"kind": "TypeNominal",
- "name": "GithubRelease",
- "printedName": "LinkKit.GithubRelease",
- "usr": "s:7LinkKit13GithubReleaseV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
@@ -40344,66 +37915,127 @@
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP3set_3forySS_AA0cdeC0OtF",
+ "mangledName": "$s7LinkKit20KeyValueStoreServiceP3set_3forySS_AA0cdeC0OtF",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.KeyValueStoreService>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP",
+ "mangledName": "$s7LinkKit20KeyValueStoreServiceP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "UserDefaultsService",
+ "printedName": "UserDefaultsService",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(defaults:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
+ "name": "UserDefaultsService",
+ "printedName": "LinkKit.UserDefaultsService",
+ "usr": "s:7LinkKit19UserDefaultsServiceV"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "UserDefaults",
+ "printedName": "Foundation.UserDefaults",
+ "hasDefaultArg": true,
+ "usr": "c:objc(cs)NSUserDefaults"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV7htmlURL7tagName4name5draft10prerelease11publishedAt4bodyACSS_S2SS2b10Foundation4DateVSStcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV7htmlURL7tagName4name5draft10prerelease11publishedAt4bodyACSS_S2SS2b10Foundation4DateVSStcfc",
+ "usr": "s:7LinkKit19UserDefaultsServiceV8defaultsACSo06NSUserD0C_tcfc",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV8defaultsACSo06NSUserD0C_tcfc",
"moduleName": "LinkKit",
- "implicit": true,
+ "declAttributes": [
+ "RawDocComment"
+ ],
"init_kind": "Designated"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Var",
+ "name": "defaults",
+ "printedName": "defaults",
"children": [
{
"kind": "TypeNominal",
- "name": "GithubRelease",
- "printedName": "LinkKit.GithubRelease",
- "usr": "s:7LinkKit13GithubReleaseV"
+ "name": "UserDefaults",
+ "printedName": "Foundation.UserDefaults",
+ "usr": "c:objc(cs)NSUserDefaults"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit19UserDefaultsServiceV8defaults33_A39322CDD144454DFDEA5686E47673A8LLSo06NSUserD0Cvp",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV8defaults33_A39322CDD144454DFDEA5686E47673A8LLSo06NSUserD0Cvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Function",
+ "name": "string",
+ "printedName": "string(for:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV4fromACs7Decoder_p_tKcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit19UserDefaultsServiceV6string3forSSSgAA013KeyValueStoreH0O_tF",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV6string3forSSSgAA013KeyValueStoreH0O_tF",
"moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "name": "set",
+ "printedName": "set(_:for:)",
"children": [
{
"kind": "TypeNominal",
@@ -40412,61 +38044,43 @@
},
{
"kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit13GithubReleaseV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit13GithubReleaseV6encode2toys7Encoder_p_tKF",
+ "usr": "s:7LinkKit19UserDefaultsServiceV3set_3forySS_AA013KeyValueStoreH0OtF",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV3set_3forySS_AA013KeyValueStoreH0OtF",
"moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
+ "isFromExtension": true,
"funcSelfKind": "NonMutating"
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit13GithubReleaseV",
- "mangledName": "$s7LinkKit13GithubReleaseV",
+ "usr": "s:7LinkKit19UserDefaultsServiceV",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "KeyValueStoreService",
+ "printedName": "KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP",
+ "mangledName": "$s7LinkKit20KeyValueStoreServiceP"
}
]
},
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "Import",
"name": "Foundation",
@@ -40475,43 +38089,51 @@
"moduleName": "LinkKit"
},
{
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
+ "kind": "TypeDecl",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit17InternalEquatableP2eeoiySbx_xtFZ",
+ "mangledName": "$s7LinkKit17InternalEquatableP2eeoiySbx_xtFZ",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalEquatable>",
+ "sugared_genericSig": "",
+ "static": true,
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP",
"moduleName": "LinkKit",
"declAttributes": [
- "ImplementationOnly"
+ "AccessControl",
+ "RawDocComment"
]
},
{
@@ -40521,465 +38143,395 @@
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "LinkHTTPServiceUserAgentProvider",
- "printedName": "LinkHTTPServiceUserAgentProvider",
+ "name": "VerificationStatus",
+ "printedName": "VerificationStatus",
"children": [
{
"kind": "Var",
- "name": "userAgent",
- "printedName": "userAgent",
+ "name": "pendingAutomaticVerification",
+ "printedName": "pendingAutomaticVerification",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvp",
- "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.VerificationStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvg",
- "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent",
- "Final"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18VerificationStatusO016pendingAutomaticC0yA2CmF",
+ "mangledName": "$s7LinkKit18VerificationStatusO016pendingAutomaticC0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
+ "kind": "Var",
+ "name": "pendingManualVerification",
+ "printedName": "pendingManualVerification",
"children": [
{
- "kind": "TypeNominal",
- "name": "LinkHTTPServiceUserAgentProvider",
- "printedName": "LinkKit.LinkHTTPServiceUserAgentProvider",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.VerificationStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderCACycfc",
- "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderCACycfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18VerificationStatusO013pendingManualC0yA2CmF",
+ "mangledName": "$s7LinkKit18VerificationStatusO013pendingManualC0yA2CmF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC",
- "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "HTTPServiceUserAgentProviding",
- "printedName": "HTTPServiceUserAgentProviding",
- "usr": "s:7AppCore29HTTPServiceUserAgentProvidingP",
- "mangledName": "$s7AppCore29HTTPServiceUserAgentProvidingP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "EmbeddedSearchAndSelectView",
- "printedName": "EmbeddedSearchAndSelectView",
- "children": [
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(viewModel:)",
+ "kind": "Var",
+ "name": "manuallyVerified",
+ "printedName": "manuallyVerified",
"children": [
{
- "kind": "TypeNominal",
- "name": "EmbeddedSearchAndSelectView",
- "printedName": "LinkKit.EmbeddedSearchAndSelectView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView"
- },
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchViewModel",
- "printedName": "Workflow.EmbeddedSearchViewModel",
- "usr": "s:8Workflow23EmbeddedSearchViewModelC"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.VerificationStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit27EmbeddedSearchAndSelectViewC9viewModelAC8Workflow0cdgI0C_tcfc",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC9viewModelAC8Workflow0cdgI0C_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18VerificationStatusO16manuallyVerifiedyA2CmF",
+ "mangledName": "$s7LinkKit18VerificationStatusO16manuallyVerifiedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:didSelectItemAt:)",
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.VerificationStatus.Type) -> (Swift.String) -> LinkKit.VerificationStatus",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.VerificationStatus",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.VerificationStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18VerificationStatusO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit18VerificationStatusO7unknownyACSScACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
},
{
"kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didSelectItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_03didF6ItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit18VerificationStatusO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit18VerificationStatusO4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "objc_name": "collectionView:didSelectItemAtIndexPath:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
"AccessControl"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:didHighlightItemAt:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
+ "name": "Optional",
+ "printedName": "LinkKit.VerificationStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didHighlightItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_18didHighlightItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit18VerificationStatusO8rawValueACSgSS_tcfc",
+ "mangledName": "$s7LinkKit18VerificationStatusO8rawValueACSgSS_tcfc",
"moduleName": "LinkKit",
- "objc_name": "collectionView:didHighlightItemAtIndexPath:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
"AccessControl"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "init_kind": "Designated"
},
{
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:didUnhighlightItemAt:)",
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didUnhighlightItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_20didUnhighlightItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18VerificationStatusO11descriptionSSvp",
+ "mangledName": "$s7LinkKit18VerificationStatusO11descriptionSSvp",
"moduleName": "LinkKit",
- "objc_name": "collectionView:didUnhighlightItemAtIndexPath:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18VerificationStatusO11descriptionSSvg",
+ "mangledName": "$s7LinkKit18VerificationStatusO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:numberOfItemsInSection:)",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:numberOfItemsInSection:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_22numberOfItemsInSectionSiSo012UICollectionG0C_SitF",
+ "usr": "s:7LinkKit18VerificationStatusO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit18VerificationStatusO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "objc_name": "collectionView:numberOfItemsInSection:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
"AccessControl"
],
- "isFromExtension": true,
+ "throwing": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:cellForItemAt:)",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "UICollectionViewCell",
- "printedName": "UIKit.UICollectionViewCell",
- "usr": "c:objc(cs)UICollectionViewCell"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
"kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
},
{
"kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:cellForItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_13cellForItemAtSo012UICollectionG4CellCSo0mG0C_10Foundation9IndexPathVtF",
+ "usr": "s:7LinkKit18VerificationStatusO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit18VerificationStatusO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "objc_name": "collectionView:cellForItemAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
+ "static": true,
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:layout:sizeForItemAt:)",
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreGraphics.CGSize",
- "usr": "c:@S@CGSize"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionViewLayout",
- "printedName": "UIKit.UICollectionViewLayout",
- "usr": "c:objc(cs)UICollectionViewLayout"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "PLKVerificationStatus",
+ "printedName": "LinkKit.PLKVerificationStatus",
+ "usr": "c:objc(cs)PLKVerificationStatus"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:layout:sizeForItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_6layout13sizeForItemAtSo6CGSizeVSo012UICollectionG0C_So0oG6LayoutC10Foundation9IndexPathVtF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvp",
+ "mangledName": "$s7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvp",
"moduleName": "LinkKit",
- "objc_name": "collectionView:layout:sizeForItemAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
"isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKVerificationStatus",
+ "printedName": "LinkKit.PLKVerificationStatus",
+ "usr": "c:objc(cs)PLKVerificationStatus"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvg",
+ "mangledName": "$s7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
}
],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit18VerificationStatusO",
+ "mangledName": "$s7LinkKit18VerificationStatusO",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
+ "AccessControl"
],
"conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
{
"kind": "Conformance",
"name": "CustomStringConvertible",
@@ -40989,398 +38541,420 @@
},
{
"kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "LayoutArea",
- "printedName": "LayoutArea",
- "usr": "s:9AppCoreUI10LayoutAreaP",
- "mangledName": "$s9AppCoreUI10LayoutAreaP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
{
"kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
+ "name": "Foundation",
+ "printedName": "Foundation",
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "TodoPaneViewController",
- "printedName": "TodoPaneViewController",
+ "name": "AssetReportErrorCode",
+ "printedName": "AssetReportErrorCode",
"children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
+ "kind": "Var",
+ "name": "productNotEnabled",
+ "printedName": "productNotEnabled",
"children": [
{
- "kind": "TypeNominal",
- "name": "TodoPaneViewController",
- "printedName": "LinkKit.TodoPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "TODOViewModel",
- "printedName": "Workflow.TODOViewModel",
- "usr": "s:8Workflow13TODOViewModelC"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit22TodoPaneViewControllerC4withAC8Workflow13TODOViewModelC_tcfc",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC4withAC8Workflow13TODOViewModelC_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO17productNotEnabledyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO17productNotEnabledyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Required",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Var",
+ "name": "dataUnavailable",
+ "printedName": "dataUnavailable",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.TodoPaneViewController?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "TodoPaneViewController",
- "printedName": "LinkKit.TodoPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO15dataUnavailableyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO15dataUnavailableyA2CmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "kind": "Var",
+ "name": "productNotReady",
+ "printedName": "productNotReady",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC11viewDidLoadyyF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO15productNotReadyyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO15productNotReadyyA2CmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
"RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
+ "kind": "Var",
+ "name": "assetReportGenerationFailed",
+ "printedName": "assetReportGenerationFailed",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC13viewDidAppearyySbF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD16GenerationFailedyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD16GenerationFailedyA2CmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "invalidParent",
+ "printedName": "invalidParent",
"children": [
{
- "kind": "TypeNominal",
- "name": "TODOViewModel",
- "printedName": "Workflow.TODOViewModel",
- "usr": "s:8Workflow13TODOViewModelC"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit22TodoPaneViewControllerC9viewModel33_F224A9F6BC8F4F117F334109F7CC7D5DLL8Workflow08TODOViewH0Cvp",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC9viewModel33_F224A9F6BC8F4F117F334109F7CC7D5DLL8Workflow08TODOViewH0Cvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO13invalidParentyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO13invalidParentyA2CmF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
+ "kind": "Var",
+ "name": "insightsNotEnabled",
+ "printedName": "insightsNotEnabled",
"children": [
{
- "kind": "TypeNominal",
- "name": "TodoPaneViewController",
- "printedName": "LinkKit.TodoPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO18insightsNotEnabledyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO18insightsNotEnabledyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "insightsPreviouslyNotEnabled",
+ "printedName": "insightsPreviouslyNotEnabled",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO28insightsPreviouslyNotEnabledyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO28insightsPreviouslyNotEnabledyA2CmF",
"moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
+ "RawDocComment"
+ ]
+ },
{
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> (Swift.String) -> LinkKit.AssetReportErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.AssetReportErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO6stringACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "ReactNativeLinkKit",
- "printedName": "ReactNativeLinkKit",
- "children": [
{
"kind": "Var",
- "name": "sdkVersion",
- "printedName": "sdkVersion",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO11descriptionSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -41389,20 +38963,37 @@
"usr": "s:SS"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "productNotEnabledString",
+ "printedName": "productNotEnabledString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvpZ",
- "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvpZ",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -41412,22 +39003,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvgZ",
- "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvgZ",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -41435,538 +39018,534 @@
"Transparent"
],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "dataUnavailableString",
+ "printedName": "dataUnavailableString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvsZ",
- "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvsZ",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
- "accessorKind": "set"
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "productNotReadyString",
+ "printedName": "productNotReadyString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvMZ",
- "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvMZ",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReactNativeLinkKit",
- "printedName": "LinkKit.ReactNativeLinkKit",
- "usr": "s:7LinkKit011ReactNativeaB0V"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit011ReactNativeaB0VACycfc",
- "mangledName": "$s7LinkKit011ReactNativeaB0VACycfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit011ReactNativeaB0V",
- "mangledName": "$s7LinkKit011ReactNativeaB0V",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "SafariServices",
- "printedName": "SafariServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AuthenticationServices",
- "printedName": "AuthenticationServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "LinkOOPWebViewController",
- "printedName": "LinkOOPWebViewController",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(ViewModel:)",
+ "kind": "Var",
+ "name": "assetReportGenerationFailedString",
+ "printedName": "assetReportGenerationFailedString",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkOOPWebViewController",
- "printedName": "LinkKit.LinkOOPWebViewController",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "OutOfProcessWebViewModel",
- "printedName": "Workflow.OutOfProcessWebViewModel",
- "usr": "s:8Workflow24OutOfProcessWebViewModelC"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A20OOPWebViewControllerC0D5ModelAC8Workflow015OutOfProcessWebdF0C_tcfc",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC0D5ModelAC8Workflow015OutOfProcessWebdF0C_tcfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "init_kind": "Designated"
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
+ "kind": "Var",
+ "name": "invalidParentString",
+ "printedName": "invalidParentString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC13viewDidAppearyySbF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvpZ",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
+ "static": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "insightsNotEnabledString",
+ "printedName": "insightsNotEnabledString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC11viewDidLoadyyF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvpZ",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
+ "static": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "funcSelfKind": "NonMutating"
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "insightsPreviouslyNotEnabledString",
+ "printedName": "insightsPreviouslyNotEnabledString",
"children": [
{
"kind": "TypeNominal",
- "name": "OutOfProcessWebViewModel",
- "printedName": "Workflow.OutOfProcessWebViewModel",
- "usr": "s:8Workflow24OutOfProcessWebViewModelC"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A20OOPWebViewControllerC9viewModel33_511DB72405631A29D0102CBAA022739ALL8Workflow015OutOfProcessWebdG0Cvp",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC9viewModel33_511DB72405631A29D0102CBAA022739ALL8Workflow015OutOfProcessWebdG0Cvp",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvpZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "Custom",
- "Final",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 0,
"isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "webAuthenticationSession",
- "printedName": "webAuthenticationSession",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Any?",
+ "printedName": "LinkKit.PLKAssetReportErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
+ "name": "PLKAssetReportErrorCode",
+ "printedName": "LinkKit.PLKAssetReportErrorCode",
+ "usr": "c:@E@PLKAssetReportErrorCode"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A20OOPWebViewControllerC24webAuthenticationSession33_511DB72405631A29D0102CBAA022739ALLypSgvp",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC24webAuthenticationSession33_511DB72405631A29D0102CBAA022739ALLypSgvp",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvp",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvp",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 1,
- "hasStorage": true
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKAssetReportErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKAssetReportErrorCode",
+ "printedName": "LinkKit.PLKAssetReportErrorCode",
+ "usr": "c:@E@PLKAssetReportErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvg",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "SDKValidationService",
+ "printedName": "SDKValidationService",
+ "children": [
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(nibName:bundle:)",
+ "printedName": "init(sdkReleaseLoader:log:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkOOPWebViewController",
- "printedName": "LinkKit.LinkOOPWebViewController",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController"
+ "name": "SDKValidationService",
+ "printedName": "LinkKit.SDKValidationService",
+ "usr": "s:7LinkKit20SDKValidationServiceC"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "SDKReleaseLoader",
+ "printedName": "LinkKit.SDKReleaseLoader",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "usr": "s:7LinkKit20SDKValidationServiceC16sdkReleaseLoader3logAcA010SDKReleaseG0_p_3LogAGVtcfc",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC16sdkReleaseLoader3logAcA010SDKReleaseG0_p_3LogAGVtcfc",
"moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
+ "AccessControl",
+ "RawDocComment"
],
"init_kind": "Designated"
},
{
"kind": "Function",
- "name": "open",
- "printedName": "open(url:popupBehavior:)",
+ "name": "validateIntegration",
+ "printedName": "validateIntegration()",
"children": [
{
"kind": "TypeNominal",
"name": "Void",
"printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- },
- {
- "kind": "TypeNominal",
- "name": "Link_Workflow_Nodes_Panes_WebviewFallbackIOSPopupBehavior",
- "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_WebviewFallbackIOSPopupBehavior",
- "usr": "s:13WorkflowProto05Link_A44_Nodes_Panes_WebviewFallbackIOSPopupBehaviorO"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A20OOPWebViewControllerC4open3url13popupBehaviory10Foundation3URLV_13WorkflowProto0a1_l36_Nodes_Panes_WebviewFallbackIOSPopupI0OtF",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC4open3url13popupBehaviory10Foundation3URLV_13WorkflowProto0a1_l36_Nodes_Panes_WebviewFallbackIOSPopupI0OtF",
+ "usr": "s:7LinkKit20SDKValidationServiceC19validateIntegrationyyF",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC19validateIntegrationyyF",
"moduleName": "LinkKit",
"declAttributes": [
"Final",
- "Custom"
+ "RawDocComment"
],
- "isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
- "kind": "Function",
- "name": "presentationAnchor",
- "printedName": "presentationAnchor(for:)",
+ "kind": "Var",
+ "name": "sdkReleaseLoader",
+ "printedName": "sdkReleaseLoader",
"children": [
{
"kind": "TypeNominal",
- "name": "UIWindow",
- "printedName": "UIKit.UIWindow",
- "usr": "c:objc(cs)UIWindow"
- },
- {
- "kind": "TypeNominal",
- "name": "ASWebAuthenticationSession",
- "printedName": "AuthenticationServices.ASWebAuthenticationSession",
- "usr": "c:objc(cs)ASWebAuthenticationSession"
+ "name": "SDKReleaseLoader",
+ "printedName": "LinkKit.SDKReleaseLoader",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)LinkOOPWebViewController(im)presentationAnchorForWebAuthenticationSession:",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit20SDKValidationServiceC16sdkReleaseLoader33_DAB7F5C045708C32FAC47CA6EAB369F7LLAA010SDKReleaseG0_pvp",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC16sdkReleaseLoader33_DAB7F5C045708C32FAC47CA6EAB369F7LLAA010SDKReleaseG0_pvp",
"moduleName": "LinkKit",
- "objc_name": "presentationAnchorForWebAuthenticationSession:",
+ "isInternal": true,
"declAttributes": [
"Final",
- "ObjC",
- "Custom",
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "log",
+ "printedName": "log",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20SDKValidationServiceC3log33_DAB7F5C045708C32FAC47CA6EAB369F7LL3LogAFVvp",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC3log33_DAB7F5C045708C32FAC47CA6EAB369F7LL3LogAFVvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true
}
],
"declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC",
+ "usr": "s:7LinkKit20SDKValidationServiceC",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
"Final",
- "AccessControl",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "OutOfProcessWebViewModelDelegate",
- "printedName": "OutOfProcessWebViewModelDelegate",
- "usr": "s:8Workflow32OutOfProcessWebViewModelDelegateP",
- "mangledName": "$s8Workflow32OutOfProcessWebViewModelDelegateP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
+ "AccessControl"
]
},
{
@@ -42006,50 +39585,44 @@
"ImplementationOnly"
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "Token",
- "printedName": "Token",
+ "name": "Constants",
+ "printedName": "Constants",
"children": [
{
"kind": "Var",
- "name": "publicKey",
- "printedName": "publicKey",
+ "name": "linkWebviewFallbackScheme",
+ "printedName": "linkWebviewFallbackScheme",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.Token.Type) -> (LinkKit.LinkPublicKeyConfiguration.Token) -> LinkKit.Token",
+ "printedName": "(LinkKit.Constants.Type) -> LinkKit.Constants",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token) -> LinkKit.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Constants",
+ "printedName": "LinkKit.Constants",
+ "usr": "s:7LinkKit9ConstantsO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.Token.Type",
+ "printedName": "LinkKit.Constants.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
+ "name": "Constants",
+ "printedName": "LinkKit.Constants",
+ "usr": "s:7LinkKit9ConstantsO"
}
]
}
@@ -42057,234 +39630,247 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit5TokenO9publicKeyyAcA0a6PublicE13ConfigurationVABOcACmF",
- "mangledName": "$s7LinkKit5TokenO9publicKeyyAcA0a6PublicE13ConfigurationVABOcACmF",
+ "usr": "s:7LinkKit9ConstantsO25linkWebviewFallbackSchemeyA2CmF",
+ "mangledName": "$s7LinkKit9ConstantsO25linkWebviewFallbackSchemeyA2CmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 0
},
{
"kind": "Var",
- "name": "link",
- "printedName": "link",
+ "name": "rawValue",
+ "printedName": "rawValue",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Token.Type) -> (Swift.String) -> LinkKit.Token",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ConstantsO8rawValueSSvp",
+ "mangledName": "$s7LinkKit9ConstantsO8rawValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ConstantsO8rawValueSSvg",
+ "mangledName": "$s7LinkKit9ConstantsO8rawValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.Constants?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Constants",
+ "printedName": "LinkKit.Constants",
+ "usr": "s:7LinkKit9ConstantsO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit5TokenO4linkyACSScACmF",
- "mangledName": "$s7LinkKit5TokenO4linkyACSScACmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9ConstantsO8rawValueACSgSS_tcfc",
+ "mangledName": "$s7LinkKit9ConstantsO8rawValueACSgSS_tcfc",
"moduleName": "LinkKit",
- "fixedbinaryorder": 1
+ "implicit": true,
+ "init_kind": "Designated"
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit5TokenO",
- "mangledName": "$s7LinkKit5TokenO",
+ "usr": "s:7LinkKit9ConstantsO",
+ "mangledName": "$s7LinkKit9ConstantsO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
],
- "isEnumExhaustive": true
- },
- {
- "kind": "TypeDecl",
- "name": "OAuthMode",
- "printedName": "OAuthMode",
- "children": [
+ "enumRawTypeName": "String",
+ "isEnumExhaustive": true,
+ "conformances": [
{
- "kind": "Var",
- "name": "linkPublicKey",
- "printedName": "linkPublicKey",
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.OAuthMode.Type) -> (LinkKit.OAuthNonceConfiguration) -> LinkKit.OAuthMode",
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.OAuthNonceConfiguration) -> LinkKit.OAuthMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthMode",
- "printedName": "LinkKit.OAuthMode",
- "usr": "s:7LinkKit9OAuthModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.OAuthMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthMode",
- "printedName": "LinkKit.OAuthMode",
- "usr": "s:7LinkKit9OAuthModeO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9OAuthModeO13linkPublicKeyyAcA0C18NonceConfigurationVcACmF",
- "mangledName": "$s7LinkKit9OAuthModeO13linkPublicKeyyAcA0C18NonceConfigurationVcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ],
- "fixedbinaryorder": 0
+ "usr": "s:SY",
+ "mangledName": "$sSY"
},
{
- "kind": "Var",
- "name": "redirectUriMode",
- "printedName": "redirectUriMode",
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PLKPlaid",
+ "printedName": "PLKPlaid",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "createWithLinkTokenConfiguration",
+ "printedName": "createWithLinkTokenConfiguration(_:error:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.OAuthMode.Type) -> (Foundation.URL) -> LinkKit.OAuthMode",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKHandler?",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Foundation.URL) -> LinkKit.OAuthMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthMode",
- "printedName": "LinkKit.OAuthMode",
- "usr": "s:7LinkKit9OAuthModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ]
- },
+ "kind": "TypeNominal",
+ "name": "PLKHandler",
+ "printedName": "LinkKit.PLKHandler",
+ "usr": "c:objc(pl)PLKHandler"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PLKLinkTokenConfiguration",
+ "printedName": "LinkKit.PLKLinkTokenConfiguration",
+ "usr": "c:objc(cs)PLKLinkTokenConfiguration"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AutoreleasingUnsafeMutablePointer?",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.OAuthMode.Type",
+ "name": "AutoreleasingUnsafeMutablePointer",
+ "printedName": "Swift.AutoreleasingUnsafeMutablePointer",
"children": [
{
"kind": "TypeNominal",
- "name": "OAuthMode",
- "printedName": "LinkKit.OAuthMode",
- "usr": "s:7LinkKit9OAuthModeO"
+ "name": "Optional",
+ "printedName": "Foundation.NSError?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "usr": "s:SA"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9OAuthModeO011redirectUriD0yAC10Foundation3URLVcACmF",
- "mangledName": "$s7LinkKit9OAuthModeO011redirectUriD0yAC10Foundation3URLVcACmF",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)createWithLinkTokenConfiguration:error:",
+ "mangledName": "$s7LinkKit8PLKPlaidC010createWithA18TokenConfiguration_5errorSo10PLKHandler_pSgSo07PLKLinkfG0C_SAySo7NSErrorCSgGSgtFZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
+ "Final",
+ "AccessControl",
+ "ObjC"
],
- "fixedbinaryorder": 1
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "redirectUri",
- "printedName": "redirectUri",
+ "name": "sdkVersion",
+ "printedName": "sdkVersion",
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9OAuthModeO11redirectUri10Foundation3URLVvp",
- "mangledName": "$s7LinkKit9OAuthModeO11redirectUri10Foundation3URLVvp",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cpy)sdkVersion",
+ "mangledName": "$s7LinkKit8PLKPlaidC10sdkVersionSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "AccessControl"
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
],
"accessors": [
{
"kind": "Accessor",
"name": "Get",
"printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit9OAuthModeO11redirectUri10Foundation3URLVvg",
- "mangledName": "$s7LinkKit9OAuthModeO11redirectUri10Foundation3URLVvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "oauthStateID",
- "printedName": "oauthStateID",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -42293,137 +39879,144 @@
"usr": "s:SS"
}
],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit9OAuthModeO12oauthStateIDSSSgvp",
- "mangledName": "$s7LinkKit9OAuthModeO12oauthStateIDSSSgvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
"declKind": "Accessor",
- "usr": "s:7LinkKit9OAuthModeO12oauthStateIDSSSgvg",
- "mangledName": "$s7LinkKit9OAuthModeO12oauthStateIDSSSgvg",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)sdkVersion",
+ "mangledName": "$s7LinkKit8PLKPlaidC10sdkVersionSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
"accessorKind": "get"
}
]
},
{
- "kind": "Function",
- "name": "oauthStateID",
- "printedName": "oauthStateID(from:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "PLKPlaid",
+ "printedName": "LinkKit.PLKPlaid",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit9OAuthModeO12oauthStateID4fromSSSg10Foundation3URLV_tFZ",
- "mangledName": "$s7LinkKit9OAuthModeO12oauthStateID4fromSSSg10Foundation3URLV_tFZ",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(im)init",
+ "mangledName": "$s7LinkKit8PLKPlaidCACycfc",
"moduleName": "LinkKit",
- "static": true,
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
"declAttributes": [
- "AccessControl"
+ "Dynamic",
+ "ObjC",
+ "Override"
],
- "funcSelfKind": "NonMutating"
+ "init_kind": "Designated"
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit9OAuthModeO",
- "mangledName": "$s7LinkKit9OAuthModeO",
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid",
+ "mangledName": "$s7LinkKit8PLKPlaidC",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
"AccessControl",
+ "ObjC",
"RawDocComment"
],
- "isEnumExhaustive": true
+ "superclassUsr": "c:objc(cs)NSObject",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
},
{
"kind": "TypeDecl",
- "name": "Configuration",
- "printedName": "Configuration",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "PLKPlaidConfigurationError",
"children": [
{
"kind": "Var",
- "name": "linkPublicKey",
- "printedName": "linkPublicKey",
+ "name": "malformedClientID",
+ "printedName": "malformedClientID",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.Configuration.Type) -> (LinkKit.LinkPublicKeyConfiguration) -> LinkKit.Configuration",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration) -> LinkKit.Configuration",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.Configuration.Type",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
]
}
@@ -42431,63 +40024,40 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ConfigurationO13linkPublicKeyyAcA0aefC0VcACmF",
- "mangledName": "$s7LinkKit13ConfigurationO13linkPublicKeyyAcA0aefC0VcACmF",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorMalformedClientID",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO17malformedClientIDyA2CmF",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
"fixedbinaryorder": 0
},
{
"kind": "Var",
- "name": "linkToken",
- "printedName": "linkToken",
+ "name": "missingAuthorization",
+ "printedName": "missingAuthorization",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.Configuration.Type) -> (LinkKit.LinkTokenConfiguration, LinkKit.Environment) -> LinkKit.Configuration",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkTokenConfiguration, LinkKit.Environment) -> LinkKit.Configuration",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(LinkKit.LinkTokenConfiguration, LinkKit.Environment)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.Configuration.Type",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
]
}
@@ -42495,223 +40065,269 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ConfigurationO9linkTokenyAcA0aeC0V_AA11EnvironmentOtcACmF",
- "mangledName": "$s7LinkKit13ConfigurationO9linkTokenyAcA0aeC0V_AA11EnvironmentOtcACmF",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorMissingAuthorization",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO20missingAuthorizationyA2CmF",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
"fixedbinaryorder": 1
},
{
"kind": "Var",
- "name": "onEvent",
- "printedName": "onEvent",
+ "name": "noProduct",
+ "printedName": "noProduct",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
},
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO7onEventyyAA0aE0Vcvp",
- "mangledName": "$s7LinkKit13ConfigurationO7onEventyyAA0aE0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorNoProduct",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO9noProductyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "ObjC"
],
- "accessors": [
+ "fixedbinaryorder": 2
+ },
+ {
+ "kind": "Var",
+ "name": "invalidOptionValue",
+ "printedName": "invalidOptionValue",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO7onEventyyAA0aE0Vcvg",
- "mangledName": "$s7LinkKit13ConfigurationO7onEventyyAA0aE0Vcvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidOptionValue",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO18invalidOptionValueyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "fixedbinaryorder": 3
},
{
"kind": "Var",
- "name": "onExit",
- "printedName": "onExit",
+ "name": "invalidOptionCombination",
+ "printedName": "invalidOptionCombination",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
},
{
"kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO6onExityyAA0aE0Vcvp",
- "mangledName": "$s7LinkKit13ConfigurationO6onExityyAA0aE0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidOptionCombination",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO24invalidOptionCombinationyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "ObjC"
],
- "accessors": [
+ "fixedbinaryorder": 4
+ },
+ {
+ "kind": "Var",
+ "name": "invalidEnvironmentValue",
+ "printedName": "invalidEnvironmentValue",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO6onExityyAA0aE0Vcvg",
- "mangledName": "$s7LinkKit13ConfigurationO6onExityyAA0aE0Vcvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidEnvironmentValue",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO23invalidEnvironmentValueyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "fixedbinaryorder": 5
},
{
"kind": "Var",
- "name": "onSuccess",
- "printedName": "onSuccess",
+ "name": "invalidToken",
+ "printedName": "invalidToken",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO9onSuccessyyAA0aE0Vcvp",
- "mangledName": "$s7LinkKit13ConfigurationO9onSuccessyyAA0aE0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidToken",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO12invalidTokenyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "ObjC"
],
- "accessors": [
+ "fixedbinaryorder": 6
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKPlaidConfigurationError?",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO9onSuccessyyAA0aE0Vcvg",
- "mangledName": "$s7LinkKit13ConfigurationO9onSuccessyyAA0aE0Vcvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueACSgSi_tcfc",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueACSgSi_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "isLinkUIPresentationImmediate",
- "printedName": "isLinkUIPresentationImmediate",
+ "name": "rawValue",
+ "printedName": "rawValue",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO02isA23UIPresentationImmediateSbvp",
- "mangledName": "$s7LinkKit13ConfigurationO02isA23UIPresentationImmediateSbvp",
+ "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivp",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivp",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -42720,38 +40336,128 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO02isA23UIPresentationImmediateSbvg",
- "mangledName": "$s7LinkKit13ConfigurationO02isA23UIPresentationImmediateSbvg",
+ "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivg",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "enumRawTypeName": "Int",
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PLKHandlerShim",
+ "printedName": "PLKHandlerShim",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(handler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKHandlerShim",
+ "printedName": "LinkKit.PLKHandlerShim",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit14PLKHandlerShimC7handlerAcA7Handler_p_tcfc",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAcA7Handler_p_tcfc",
+ "moduleName": "LinkKit",
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "environment",
- "printedName": "environment",
+ "name": "handler",
+ "printedName": "handler",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO11environmentAA11EnvironmentOvp",
- "mangledName": "$s7LinkKit13ConfigurationO11environmentAA11EnvironmentOvp",
+ "usr": "s:7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvp",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvp",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "Final",
+ "HasStorage"
],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -42760,63 +40466,37 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO11environmentAA11EnvironmentOvg",
- "mangledName": "$s7LinkKit13ConfigurationO11environmentAA11EnvironmentOvg",
+ "usr": "s:7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvg",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvg",
"moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Function",
- "name": "loadSessionConfiguration",
- "printedName": "loadSessionConfiguration(_:_:_:_:_:_:)",
+ "name": "open",
+ "printedName": "open(presentationHandler:)",
"children": [
{
"kind": "TypeNominal",
"name": "Void",
"printedName": "()"
},
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.Token, WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration) -> ()",
+ "printedName": "(UIKit.UIViewController) -> ()",
"children": [
{
"kind": "TypeNominal",
@@ -42825,278 +40505,198 @@
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(LinkKit.Token, WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "OneOf_Configuration",
- "printedName": "WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration",
- "usr": "s:13WorkflowProto09Link_Api_cA12StartRequestV19OneOf_ConfigurationO"
- }
- ]
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
]
}
],
"declKind": "Func",
- "usr": "s:7LinkKit13ConfigurationO011loadSessionC0yySS_S2SSb3LogAEVyAA5TokenO_13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_C0OtctF",
- "mangledName": "$s7LinkKit13ConfigurationO011loadSessionC0yySS_S2SSb3LogAEVyAA5TokenO_13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_C0OtctF",
+ "usr": "s:7LinkKit14PLKHandlerShimC4open19presentationHandleryySo16UIViewControllerCc_tF",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandleryySo16UIViewControllerCc_tF",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
+ "isOpen": true,
"funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit13ConfigurationO",
- "mangledName": "$s7LinkKit13ConfigurationO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isEnumExhaustive": true
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LoadingPaneViewController",
- "printedName": "LoadingPaneViewController",
- "children": [
+ },
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(presentationHandler:dismissalHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LoadingPaneViewController",
- "printedName": "LinkKit.LoadingPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "TypeNominal",
- "name": "LoadingViewModel",
- "printedName": "Workflow.LoadingViewModel",
- "usr": "s:8Workflow16LoadingViewModelC"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit25LoadingPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.LoadingPaneViewController?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "LoadingPaneViewController",
- "printedName": "LinkKit.LoadingPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
- }
- ],
- "usr": "s:Sq"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
},
{
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:dismissalHandler:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandler09dismissalG0yySo16UIViewControllerCc_yAHctF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
+ "isOpen": true,
+ "objc_name": "openWithPresentationHandler:dismissalHandler:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
+ "ObjC"
],
- "init_kind": "Designated"
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "name": "open",
+ "printedName": "open(withContextViewController:)",
"children": [
{
"kind": "TypeNominal",
"name": "Void",
"printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
],
"declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC11viewDidLoadyyF",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithContextViewController:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC4open25withContextViewControllerySo06UIViewI0C_tF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
+ "isOpen": true,
+ "objc_name": "openWithContextViewController:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
+ "ObjC"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewWillAppear",
- "printedName": "viewWillAppear(_:)",
+ "name": "createEmbeddedView",
+ "printedName": "createEmbeddedView(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
],
"declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewWillAppear:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC14viewWillAppearyySbF",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)createEmbeddedView:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC18createEmbeddedViewySo6UIViewCSo0H10ControllerCF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewWillAppear:",
+ "isOpen": true,
+ "objc_name": "createEmbeddedView:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
+ "ObjC"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
+ "name": "createEmbeddedView",
+ "printedName": "createEmbeddedView(_:dismissalHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
},
{
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
}
],
"declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC13viewDidAppearyySbF",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)createEmbeddedView:dismissalHandler:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC18createEmbeddedView_16dismissalHandlerSo6UIViewCySo0J10ControllerCc_yAIctF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
+ "isOpen": true,
+ "objc_name": "createEmbeddedView:dismissalHandler:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
+ "ObjC"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewDidDisappear",
- "printedName": "viewDidDisappear(_:)",
+ "name": "resume",
+ "printedName": "resume(afterTermination:)",
"children": [
{
"kind": "TypeNominal",
@@ -43105,187 +40705,59 @@
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
],
"declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidDisappear:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC16viewDidDisappearyySbF",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)resumeAfterTermination:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC6resume16afterTerminationy10Foundation3URLV_tF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidDisappear:",
+ "isOpen": true,
+ "objc_name": "resumeAfterTermination:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
+ "ObjC"
],
"funcSelfKind": "NonMutating"
},
- {
- "kind": "Var",
- "name": "activityIndicatorView",
- "printedName": "activityIndicatorView",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PlaidActivityIndicator",
- "printedName": "Threads.PlaidActivityIndicator",
- "usr": "c:@M@Threads@objc(cs)PlaidActivityIndicator"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit25LoadingPaneViewControllerC017activityIndicatorE033_02203F4AD901BE57F27AD614C29CA913LL7Threads013PlaidActivityH0Cvp",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC017activityIndicatorE033_02203F4AD901BE57F27AD614C29CA913LL7Threads013PlaidActivityH0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LoadingViewModel",
- "printedName": "Workflow.LoadingViewModel",
- "usr": "s:8Workflow16LoadingViewModelC"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit25LoadingPaneViewControllerC9viewModel33_02203F4AD901BE57F27AD614C29CA913LL8Workflow0ceH0Cvp",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC9viewModel33_02203F4AD901BE57F27AD614C29CA913LL8Workflow0ceH0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "timer",
- "printedName": "timer",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Timer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Timer",
- "printedName": "Foundation.Timer",
- "usr": "c:objc(cs)NSTimer"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit25LoadingPaneViewControllerC5timer33_02203F4AD901BE57F27AD614C29CA913LLSo7NSTimerCSgvp",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC5timer33_02203F4AD901BE57F27AD614C29CA913LLSo7NSTimerCSgvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 2,
- "hasStorage": true
- },
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(nibName:bundle:)",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "LoadingPaneViewController",
- "printedName": "LinkKit.LoadingPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKHandlerShim",
+ "printedName": "LinkKit.PLKHandlerShim",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim"
}
],
"declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)init",
+ "mangledName": "$s7LinkKit14PLKHandlerShimCACycfc",
"moduleName": "LinkKit",
"overriding": true,
"implicit": true,
- "objc_name": "initWithNibName:bundle:",
+ "objc_name": "init",
"declAttributes": [
"Dynamic",
"ObjC",
- "Custom",
"Override"
],
"init_kind": "Designated"
}
],
"declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
"ObjC"
],
- "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassUsr": "c:objc(cs)NSObject",
"superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
"ObjectiveC.NSObject"
],
"conformances": [
@@ -43337,313 +40809,276 @@
"printedName": "CustomDebugStringConvertible",
"usr": "s:s28CustomDebugStringConvertibleP",
"mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
}
]
},
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AuthenticationServices",
- "printedName": "AuthenticationServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "SafariServices",
- "printedName": "SafariServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "os",
- "printedName": "os",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
{
"kind": "TypeDecl",
- "name": "LinkHandler",
- "printedName": "LinkHandler",
+ "name": "ExitErrorRawCode",
+ "printedName": "ExitErrorRawCode",
"children": [
{
- "kind": "TypeDecl",
- "name": "Dependencies",
- "printedName": "Dependencies",
+ "kind": "Var",
+ "name": "int",
+ "printedName": "int",
"children": [
{
- "kind": "Var",
- "name": "keyValueStoreServiceFactory",
- "printedName": "keyValueStoreServiceFactory",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.Int) -> LinkKit.ExitErrorRawCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "() -> LinkKit.KeyValueStoreService",
+ "printedName": "(Swift.Int) -> LinkKit.ExitErrorRawCode",
"children": [
{
"kind": "TypeNominal",
- "name": "KeyValueStoreService",
- "printedName": "LinkKit.KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
},
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
]
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvp",
- "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorRawCode.Type",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> LinkKit.KeyValueStoreService",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreService",
- "printedName": "LinkKit.KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvg",
- "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO3intyACSicACmF",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO3intyACSicACmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
+ },
+ {
+ "kind": "Var",
+ "name": "string",
+ "printedName": "string",
+ "children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(keyValueStoreServiceFactory:)",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.String) -> LinkKit.ExitErrorRawCode",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Dependencies",
- "printedName": "LinkKit.LinkHandler.Dependencies",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "() -> LinkKit.KeyValueStoreService",
+ "printedName": "(Swift.String) -> LinkKit.ExitErrorRawCode",
"children": [
{
"kind": "TypeNominal",
- "name": "KeyValueStoreService",
- "printedName": "LinkKit.KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
},
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ],
- "hasDefaultArg": true
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorRawCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
+ }
+ ]
}
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAeA03KeyfgH0_pyc_tcfc",
- "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAeA03KeyfgH0_pyc_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ ]
}
],
- "declKind": "Struct",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV",
- "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO6stringyACSScACmF",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO6stringyACSScACmF",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
+ "fixedbinaryorder": 1
+ },
+ {
+ "kind": "Var",
+ "name": "unknownTypeAndCode",
+ "printedName": "unknownTypeAndCode",
+ "children": [
{
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.String, Swift.String) -> LinkKit.ExitErrorRawCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String, Swift.String) -> LinkKit.ExitErrorRawCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(type: Swift.String, code: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorRawCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
+ }
+ ]
+ }
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO014unknownTypeAndF0yACSS_SStcACmF",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO014unknownTypeAndF0yACSS_SStcACmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 2
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(configuration:dependencies:)",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkHandler",
- "printedName": "LinkKit.LinkHandler",
- "usr": "s:7LinkKit0A7HandlerC"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
"kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
},
{
"kind": "TypeNominal",
- "name": "Dependencies",
- "printedName": "LinkKit.LinkHandler.Dependencies",
- "hasDefaultArg": true,
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A7HandlerC13configuration12dependenciesAcA13ConfigurationO_AC12DependenciesVtcfc",
- "mangledName": "$s7LinkKit0A7HandlerC13configuration12dependenciesAcA13ConfigurationO_AC12DependenciesVtcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO",
+ "moduleName": "LinkKit",
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
},
{
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentUsing:)",
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Account",
+ "printedName": "Account",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "id",
+ "printedName": "id",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC4open12presentUsingyAA18PresentationMethodO_tF",
- "mangledName": "$s7LinkKit0A7HandlerC4open12presentUsingyAA18PresentationMethodO_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7AccountV2idSSvp",
+ "mangledName": "$s7LinkKit7AccountV2idSSvp",
"moduleName": "LinkKit",
- "isOpen": true,
"declAttributes": [
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentUsing:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- },
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -43651,181 +41086,143 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:SD"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7AccountV2idSSvg",
+ "mangledName": "$s7LinkKit7AccountV2idSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC4open12presentUsing_yAA18PresentationMethodO_SDyS2SGtF",
- "mangledName": "$s7LinkKit0A7HandlerC4open12presentUsing_yAA18PresentationMethodO_SDyS2SGtF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "resumeAfterTermination",
- "printedName": "resumeAfterTermination(from:)",
+ "kind": "Var",
+ "name": "name",
+ "printedName": "name",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC22resumeAfterTermination4fromy10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit0A7HandlerC22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7AccountV4nameSSvp",
+ "mangledName": "$s7LinkKit7AccountV4nameSSvp",
"moduleName": "LinkKit",
- "isOpen": true,
"declAttributes": [
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continue",
- "printedName": "continue(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7AccountV4nameSSvg",
+ "mangledName": "$s7LinkKit7AccountV4nameSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC8continue4fromy10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit0A7HandlerC8continue4fromy10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "continueFrom",
- "printedName": "continueFrom(redirectUri:)",
+ "kind": "Var",
+ "name": "mask",
+ "printedName": "mask",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.HandlerContinueError?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC12continueFrom11redirectUriAA0C13ContinueErrorOSg10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit0A7HandlerC12continueFrom11redirectUriAA0C13ContinueErrorOSg10Foundation3URLV_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7AccountV4maskSSSgvp",
+ "mangledName": "$s7LinkKit7AccountV4maskSSSgvp",
"moduleName": "LinkKit",
- "isOpen": true,
"declAttributes": [
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "createEmbeddedView",
- "printedName": "createEmbeddedView(presentUsing:)",
- "children": [
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- },
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "usr": "s:s6ResultO"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7AccountV4maskSSSgvg",
+ "mangledName": "$s7LinkKit7AccountV4maskSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC18createEmbeddedView12presentUsings6ResultOySo6UIViewCAA18ConfigurationErrorOGAA18PresentationMethodO_tF",
- "mangledName": "$s7LinkKit0A7HandlerC18createEmbeddedView12presentUsings6ResultOySo6UIViewCAA18ConfigurationErrorOGAA18PresentationMethodO_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Var",
- "name": "linkOpenID",
- "printedName": "linkOpenID",
+ "name": "subtype",
+ "printedName": "subtype",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "AccountSubtype",
+ "printedName": "LinkKit.AccountSubtype",
+ "usr": "s:7LinkKit14AccountSubtypeO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC10linkOpenIDSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC10linkOpenIDSSvp",
+ "usr": "s:7LinkKit7AccountV7subtypeAA0C7SubtypeOvp",
+ "mangledName": "$s7LinkKit7AccountV7subtypeAA0C7SubtypeOvp",
"moduleName": "LinkKit",
- "isOpen": true,
"declAttributes": [
- "HasInitialValue",
"HasStorage",
- "SetterAccess",
"AccessControl",
"RawDocComment"
],
- "fixedbinaryorder": 0,
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -43835,68 +41232,50 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "AccountSubtype",
+ "printedName": "LinkKit.AccountSubtype",
+ "usr": "s:7LinkKit14AccountSubtypeO"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC10linkOpenIDSSvg",
- "mangledName": "$s7LinkKit0A7HandlerC10linkOpenIDSSvg",
+ "usr": "s:7LinkKit7AccountV7subtypeAA0C7SubtypeOvg",
+ "mangledName": "$s7LinkKit7AccountV7subtypeAA0C7SubtypeOvg",
"moduleName": "LinkKit",
"implicit": true,
- "isOpen": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "onSessionCreated",
- "printedName": "onSessionCreated",
+ "name": "verificationStatus",
+ "printedName": "verificationStatus",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "((Workflow.Session) -> ())?",
+ "printedName": "LinkKit.VerificationStatus?",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Workflow.Session) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Session",
- "printedName": "Workflow.Session",
- "usr": "s:8Workflow7SessionC"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvp",
+ "usr": "s:7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvp",
+ "mangledName": "$s7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvp",
"moduleName": "LinkKit",
- "isOpen": true,
"declAttributes": [
- "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "fixedbinaryorder": 1,
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -43907,142 +41286,54 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "((Workflow.Session) -> ())?",
+ "printedName": "LinkKit.VerificationStatus?",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Workflow.Session) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Session",
- "printedName": "Workflow.Session",
- "usr": "s:8Workflow7SessionC"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvg",
- "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvg",
+ "usr": "s:7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvg",
+ "mangledName": "$s7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvg",
"moduleName": "LinkKit",
"implicit": true,
- "isOpen": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(id:name:mask:subtype:verificationStatus:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Workflow.Session) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Workflow.Session) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Session",
- "printedName": "Workflow.Session",
- "usr": "s:8Workflow7SessionC"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvs",
- "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "isOpen": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
},
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvM",
- "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "isOpen": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "linkPersistentID",
- "printedName": "linkPersistentID",
- "children": [
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC16linkPersistentIDSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC16linkPersistentIDSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -44051,3462 +41342,639 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC16linkPersistentIDSSvg",
- "mangledName": "$s7LinkKit0A7HandlerC16linkPersistentIDSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent",
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "openCallTimestamp",
- "printedName": "openCallTimestamp",
- "children": [
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "AccountSubtype",
+ "printedName": "LinkKit.AccountSubtype",
+ "usr": "s:7LinkKit14AccountSubtypeO"
+ },
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.Double?",
+ "printedName": "LinkKit.VerificationStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
}
],
+ "hasDefaultArg": true,
"usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC17openCallTimestamp33_2F35CE8D0F063DC4E7A32246BB6D8185LLSdSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC17openCallTimestamp33_2F35CE8D0F063DC4E7A32246BB6D8185LLSdSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit7AccountV2id4name4mask7subtype18verificationStatusACSS_S2SSgAA0C7SubtypeOAA012VerificationI0OSgtcfc",
+ "mangledName": "$s7LinkKit7AccountV2id4name4mask7subtype18verificationStatusACSS_S2SSgAA0C7SubtypeOAA012VerificationI0OSgtcfc",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl",
"RawDocComment"
],
- "fixedbinaryorder": 3,
- "hasStorage": true
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "state",
- "printedName": "state",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "State",
- "printedName": "LinkKit.LinkHandler.State",
- "usr": "s:7LinkKit0A7HandlerC5State33_2F35CE8D0F063DC4E7A32246BB6D8185LLO"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC5state33_2F35CE8D0F063DC4E7A32246BB6D8185LLAC5StateAELLOvp",
- "mangledName": "$s7LinkKit0A7HandlerC5state33_2F35CE8D0F063DC4E7A32246BB6D8185LLAC5StateAELLOvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 4,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "pendingRedirectUri",
- "printedName": "pendingRedirectUri",
- "children": [
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ },
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC18pendingRedirectUri33_2F35CE8D0F063DC4E7A32246BB6D8185LL10Foundation3URLVSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC18pendingRedirectUri33_2F35CE8D0F063DC4E7A32246BB6D8185LL10Foundation3URLVSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit7AccountV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit7AccountV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 5,
- "hasStorage": true
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "configuration",
- "printedName": "configuration",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC13configuration33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA13ConfigurationOvp",
- "mangledName": "$s7LinkKit0A7HandlerC13configuration33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA13ConfigurationOvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7AccountV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit7AccountV6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 6,
- "isLet": true,
- "hasStorage": true
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "log",
- "printedName": "log",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC3log33_2F35CE8D0F063DC4E7A32246BB6D8185LL3LogAFVvp",
- "mangledName": "$s7LinkKit0A7HandlerC3log33_2F35CE8D0F063DC4E7A32246BB6D8185LL3LogAFVvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7AccountV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit7AccountV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 7,
- "isLet": true,
- "hasStorage": true
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "keyValueService",
- "printedName": "keyValueService",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "KeyValueStoreService",
- "printedName": "LinkKit.KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ "name": "PLKAccount",
+ "printedName": "LinkKit.PLKAccount",
+ "usr": "c:objc(cs)PLKAccount"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC15keyValueService33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA03Keye5StoreF0_pvp",
- "mangledName": "$s7LinkKit0A7HandlerC15keyValueService33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA03Keye5StoreF0_pvp",
+ "usr": "s:7LinkKit7AccountV6toObjCSo10PLKAccountCvp",
+ "mangledName": "$s7LinkKit7AccountV6toObjCSo10PLKAccountCvp",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 8,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "session",
- "printedName": "session",
- "children": [
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Workflow.Session?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Session",
- "printedName": "Workflow.Session",
- "usr": "s:8Workflow7SessionC"
+ "name": "PLKAccount",
+ "printedName": "LinkKit.PLKAccount",
+ "usr": "c:objc(cs)PLKAccount"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7AccountV6toObjCSo10PLKAccountCvg",
+ "mangledName": "$s7LinkKit7AccountV6toObjCSo10PLKAccountCvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC7session33_2F35CE8D0F063DC4E7A32246BB6D8185LL8Workflow7SessionCSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC7session33_2F35CE8D0F063DC4E7A32246BB6D8185LL8Workflow7SessionCSgvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 9,
- "hasStorage": true
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit7AccountV",
+ "mangledName": "$s7LinkKit7AccountV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
- "kind": "Var",
- "name": "sdkInfo",
- "printedName": "sdkInfo",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SDKInfoProvider",
- "printedName": "LinkKit.SDKInfoProvider",
- "usr": "s:7LinkKit15SDKInfoProviderV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC7sdkInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA15SDKInfoProviderVvp",
- "mangledName": "$s7LinkKit0A7HandlerC7sdkInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA15SDKInfoProviderVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 10,
- "isLet": true,
- "hasStorage": true
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
- "kind": "Var",
- "name": "deviceInfo",
- "printedName": "deviceInfo",
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InternalExpressibleByStringLiteral",
+ "printedName": "InternalExpressibleByStringLiteral",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(stringLiteral:)",
"children": [
{
"kind": "TypeNominal",
- "name": "DeviceInfoProvider",
- "printedName": "LinkKit.DeviceInfoProvider",
- "usr": "s:7LinkKit18DeviceInfoProviderV"
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC10deviceInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06DeviceE8ProviderVvp",
- "mangledName": "$s7LinkKit0A7HandlerC10deviceInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06DeviceE8ProviderVvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP06stringG0xSS_tcfc",
+ "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP06stringG0xSS_tcfc",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 11,
- "isLet": true,
- "hasStorage": true
- },
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalExpressibleByStringLiteral>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP",
+ "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InternalStringRepresentable",
+ "printedName": "InternalStringRepresentable",
+ "children": [
{
- "kind": "Var",
- "name": "localeInfo",
- "printedName": "localeInfo",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LocaleInfoProvider",
- "printedName": "LinkKit.LocaleInfoProvider",
- "usr": "s:7LinkKit18LocaleInfoProviderV"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC10localeInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06LocaleE8ProviderVvp",
- "mangledName": "$s7LinkKit0A7HandlerC10localeInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06LocaleE8ProviderVvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit27InternalStringRepresentablePAAE6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit27InternalStringRepresentablePAAE6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "isInternal": true,
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalStringRepresentable>",
+ "sugared_genericSig": "",
"declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 12,
- "isLet": true,
- "hasStorage": true
+ "isFromExtension": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit27InternalStringRepresentableP",
+ "mangledName": "$s7LinkKit27InternalStringRepresentableP",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 : LinkKit.InternalExpressibleByStringLiteral, τ_0_0 : Swift.CustomStringConvertible>",
+ "sugared_genericSig": "",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
{
- "kind": "Var",
- "name": "userAgentProvider",
- "printedName": "userAgentProvider",
+ "kind": "Conformance",
+ "name": "InternalExpressibleByStringLiteral",
+ "printedName": "InternalExpressibleByStringLiteral",
+ "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP",
+ "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Component",
+ "printedName": "Component",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "asset",
+ "printedName": "asset(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkHTTPServiceUserAgentProvider",
- "printedName": "LinkKit.LinkHTTPServiceUserAgentProvider",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC17userAgentProvider33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0a15HTTPServiceUsereF0Cvp",
- "mangledName": "$s7LinkKit0A7HandlerC17userAgentProvider33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0a15HTTPServiceUsereF0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 13,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "paneViewModelObserver",
- "printedName": "paneViewModelObserver",
- "children": [
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "AppCore.Observer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Observer",
- "printedName": "AppCore.Observer",
- "usr": "s:7AppCore8ObserverC"
- }
- ],
- "usr": "s:Sq"
+ "name": "Asset",
+ "printedName": "Threads.Asset",
+ "usr": "s:7Threads5AssetO"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC21paneViewModelObserver33_2F35CE8D0F063DC4E7A32246BB6D8185LL7AppCore0G0CSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC21paneViewModelObserver33_2F35CE8D0F063DC4E7A32246BB6D8185LL7AppCore0G0CSgvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV5assetyAC7Threads5AssetOFZ",
+ "mangledName": "$s7LinkKit9ComponentV5assetyAC7Threads5AssetOFZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 14,
- "hasStorage": true
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "institutionID",
- "printedName": "institutionID",
+ "kind": "Function",
+ "name": "header",
+ "printedName": "header(_:_:_:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TextKind",
+ "printedName": "Threads.TextKind",
+ "hasDefaultArg": true,
+ "usr": "s:7Threads8TextKindO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSTextAlignment",
+ "printedName": "UIKit.NSTextAlignment",
+ "hasDefaultArg": true,
+ "usr": "c:@E@NSTextAlignment"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC13institutionID33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC13institutionID33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV6headeryACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
+ "mangledName": "$s7LinkKit9ComponentV6headeryACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 15,
- "hasStorage": true
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "institutionIDOptionKey",
- "printedName": "institutionIDOptionKey",
+ "kind": "Function",
+ "name": "body",
+ "printedName": "body(_:_:_:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TextKind",
+ "printedName": "Threads.TextKind",
+ "hasDefaultArg": true,
+ "usr": "s:7Threads8TextKindO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSTextAlignment",
+ "printedName": "UIKit.NSTextAlignment",
+ "hasDefaultArg": true,
+ "usr": "c:@E@NSTextAlignment"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC22institutionIDOptionKey33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC22institutionIDOptionKey33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV4bodyyACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
+ "mangledName": "$s7LinkKit9ComponentV4bodyyACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 16,
- "isLet": true,
- "hasStorage": true
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "selectAccount",
- "printedName": "selectAccount",
+ "kind": "Function",
+ "name": "button",
+ "printedName": "button(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ButtonViewModel",
+ "printedName": "Threads.ButtonViewModel",
+ "usr": "s:7Threads15ButtonViewModelV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC13selectAccount33_2F35CE8D0F063DC4E7A32246BB6D8185LLSbvp",
- "mangledName": "$s7LinkKit0A7HandlerC13selectAccount33_2F35CE8D0F063DC4E7A32246BB6D8185LLSbvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV6buttonyAC7Threads15ButtonViewModelVFZ",
+ "mangledName": "$s7LinkKit9ComponentV6buttonyAC7Threads15ButtonViewModelVFZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 17,
- "hasStorage": true
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "selectAccountOptionKey",
- "printedName": "selectAccountOptionKey",
+ "kind": "Function",
+ "name": "textInput",
+ "printedName": "textInput(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TextInputViewModel",
+ "printedName": "Threads.TextInputViewModel",
+ "usr": "s:7Threads18TextInputViewModelC"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC22selectAccountOptionKey33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC22selectAccountOptionKey33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV9textInputyAC7Threads04TextE9ViewModelCFZ",
+ "mangledName": "$s7LinkKit9ComponentV9textInputyAC7Threads04TextE9ViewModelCFZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 18,
- "isLet": true,
- "hasStorage": true
- }
- ],
- "declKind": "Class",
- "usr": "s:7LinkKit0A7HandlerC",
- "mangledName": "$s7LinkKit0A7HandlerC",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Handler",
- "printedName": "Handler",
- "usr": "s:7LinkKit7HandlerP",
- "mangledName": "$s7LinkKit7HandlerP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "KeyValueStoreKey",
- "printedName": "KeyValueStoreKey",
- "children": [
+ "funcSelfKind": "NonMutating"
+ },
{
- "kind": "Var",
- "name": "linkPersistentID",
- "printedName": "linkPersistentID",
+ "kind": "Function",
+ "name": "stack",
+ "printedName": "stack(_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.KeyValueStoreKey.Type) -> LinkKit.KeyValueStoreKey",
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Component]",
"children": [
{
"kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.KeyValueStoreKey.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ]
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
}
- ]
+ ],
+ "usr": "s:Sa"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit013KeyValueStoreC0O16linkPersistentIDyA2CmF",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O16linkPersistentIDyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV5stackyACSayACGFZ",
+ "mangledName": "$s7LinkKit9ComponentV5stackyACSayACGFZ",
"moduleName": "LinkKit",
- "fixedbinaryorder": 0
+ "static": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
+ "kind": "Function",
+ "name": "spaceAbove",
+ "printedName": "spaceAbove(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.KeyValueStoreKey?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "usr": "s:Sq"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "CGFloat",
+ "printedName": "CoreGraphics.CGFloat",
+ "usr": "s:14CoreFoundation7CGFloatV"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0ACSgSS_tcfc",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0ACSgSS_tcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV10spaceAboveyAC14CoreFoundation7CGFloatVF",
+ "mangledName": "$s7LinkKit9ComponentV10spaceAboveyAC12CoreGraphics7CGFloatVF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
+ "kind": "Function",
+ "name": "spaceBelow",
+ "printedName": "spaceBelow(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CGFloat",
+ "printedName": "CoreGraphics.CGFloat",
+ "usr": "s:14CoreFoundation7CGFloatV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0SSvp",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0SSvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV10spaceBelowyAC14CoreFoundation7CGFloatVF",
+ "mangledName": "$s7LinkKit9ComponentV10spaceBelowyAC12CoreGraphics7CGFloatVF",
"moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0SSvg",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0SSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit013KeyValueStoreC0O",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "enumRawTypeName": "String",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
+ "kind": "Function",
+ "name": "margin",
+ "printedName": "margin(_:)",
"children": [
{
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIEdgeInsets",
+ "printedName": "UIKit.UIEdgeInsets",
+ "usr": "c:@S@UIEdgeInsets"
}
],
- "usr": "s:SY",
- "mangledName": "$sSY"
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV6marginyACSo12UIEdgeInsetsVF",
+ "mangledName": "$s7LinkKit9ComponentV6marginyACSo12UIEdgeInsetsVF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "KeyValueStoreService",
- "printedName": "KeyValueStoreService",
- "children": [
{
"kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit20KeyValueStoreServiceP6string3forSSSgAA0cdeC0O_tF",
- "mangledName": "$s7LinkKit20KeyValueStoreServiceP6string3forSSSgAA0cdeC0O_tF",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.KeyValueStoreService>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "set",
- "printedName": "set(_:for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit20KeyValueStoreServiceP3set_3forySS_AA0cdeC0OtF",
- "mangledName": "$s7LinkKit20KeyValueStoreServiceP3set_3forySS_AA0cdeC0OtF",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.KeyValueStoreService>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit20KeyValueStoreServiceP",
- "mangledName": "$s7LinkKit20KeyValueStoreServiceP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UserDefaultsService",
- "printedName": "UserDefaultsService",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(defaults:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UserDefaultsService",
- "printedName": "LinkKit.UserDefaultsService",
- "usr": "s:7LinkKit19UserDefaultsServiceV"
- },
- {
- "kind": "TypeNominal",
- "name": "UserDefaults",
- "printedName": "Foundation.UserDefaults",
- "hasDefaultArg": true,
- "usr": "c:objc(cs)NSUserDefaults"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit19UserDefaultsServiceV8defaultsACSo06NSUserD0C_tcfc",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV8defaultsACSo06NSUserD0C_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "defaults",
- "printedName": "defaults",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UserDefaults",
- "printedName": "Foundation.UserDefaults",
- "usr": "c:objc(cs)NSUserDefaults"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit19UserDefaultsServiceV8defaults33_A39322CDD144454DFDEA5686E47673A8LLSo06NSUserD0Cvp",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV8defaults33_A39322CDD144454DFDEA5686E47673A8LLSo06NSUserD0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit19UserDefaultsServiceV6string3forSSSgAA013KeyValueStoreH0O_tF",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV6string3forSSSgAA013KeyValueStoreH0O_tF",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "set",
- "printedName": "set(_:for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit19UserDefaultsServiceV3set_3forySS_AA013KeyValueStoreH0OtF",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV3set_3forySS_AA013KeyValueStoreH0OtF",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit19UserDefaultsServiceV",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "KeyValueStoreService",
- "printedName": "KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP",
- "mangledName": "$s7LinkKit20KeyValueStoreServiceP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "children": [
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit17InternalEquatableP2eeoiySbx_xtFZ",
- "mangledName": "$s7LinkKit17InternalEquatableP2eeoiySbx_xtFZ",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalEquatable>",
- "sugared_genericSig": "",
- "static": true,
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SDKValidationService",
- "printedName": "SDKValidationService",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(sdkReleaseLoader:log:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SDKValidationService",
- "printedName": "LinkKit.SDKValidationService",
- "usr": "s:7LinkKit20SDKValidationServiceC"
- },
- {
- "kind": "TypeNominal",
- "name": "SDKReleaseLoader",
- "printedName": "LinkKit.SDKReleaseLoader",
- "usr": "s:7LinkKit16SDKReleaseLoaderP"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit20SDKValidationServiceC16sdkReleaseLoader3logAcA010SDKReleaseG0_p_3LogAGVtcfc",
- "mangledName": "$s7LinkKit20SDKValidationServiceC16sdkReleaseLoader3logAcA010SDKReleaseG0_p_3LogAGVtcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "validateIntegration",
- "printedName": "validateIntegration()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit20SDKValidationServiceC19validateIntegrationyyF",
- "mangledName": "$s7LinkKit20SDKValidationServiceC19validateIntegrationyyF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "sdkReleaseLoader",
- "printedName": "sdkReleaseLoader",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SDKReleaseLoader",
- "printedName": "LinkKit.SDKReleaseLoader",
- "usr": "s:7LinkKit16SDKReleaseLoaderP"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20SDKValidationServiceC16sdkReleaseLoader33_DAB7F5C045708C32FAC47CA6EAB369F7LLAA010SDKReleaseG0_pvp",
- "mangledName": "$s7LinkKit20SDKValidationServiceC16sdkReleaseLoader33_DAB7F5C045708C32FAC47CA6EAB369F7LLAA010SDKReleaseG0_pvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "log",
- "printedName": "log",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20SDKValidationServiceC3log33_DAB7F5C045708C32FAC47CA6EAB369F7LL3LogAFVvp",
- "mangledName": "$s7LinkKit20SDKValidationServiceC3log33_DAB7F5C045708C32FAC47CA6EAB369F7LL3LogAFVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
- }
- ],
- "declKind": "Class",
- "usr": "s:7LinkKit20SDKValidationServiceC",
- "mangledName": "$s7LinkKit20SDKValidationServiceC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "AccessControl"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "Constants",
- "printedName": "Constants",
- "children": [
- {
- "kind": "Var",
- "name": "linkWebviewFallbackScheme",
- "printedName": "linkWebviewFallbackScheme",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Constants.Type) -> LinkKit.Constants",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Constants",
- "printedName": "LinkKit.Constants",
- "usr": "s:7LinkKit9ConstantsO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Constants.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Constants",
- "printedName": "LinkKit.Constants",
- "usr": "s:7LinkKit9ConstantsO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9ConstantsO25linkWebviewFallbackSchemeyA2CmF",
- "mangledName": "$s7LinkKit9ConstantsO25linkWebviewFallbackSchemeyA2CmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.Constants?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Constants",
- "printedName": "LinkKit.Constants",
- "usr": "s:7LinkKit9ConstantsO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9ConstantsO8rawValueACSgSS_tcfc",
- "mangledName": "$s7LinkKit9ConstantsO8rawValueACSgSS_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit9ConstantsO8rawValueSSvp",
- "mangledName": "$s7LinkKit9ConstantsO8rawValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit9ConstantsO8rawValueSSvg",
- "mangledName": "$s7LinkKit9ConstantsO8rawValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit9ConstantsO",
- "mangledName": "$s7LinkKit9ConstantsO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "enumRawTypeName": "String",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "PLKPlaid",
- "printedName": "PLKPlaid",
- "children": [
- {
- "kind": "Function",
- "name": "createWithLinkTokenConfiguration",
- "printedName": "createWithLinkTokenConfiguration(_:error:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKHandler?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKHandler",
- "printedName": "LinkKit.PLKHandler",
- "usr": "c:objc(pl)PLKHandler"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "PLKLinkTokenConfiguration",
- "printedName": "LinkKit.PLKLinkTokenConfiguration",
- "usr": "c:objc(cs)PLKLinkTokenConfiguration"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.AutoreleasingUnsafeMutablePointer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AutoreleasingUnsafeMutablePointer",
- "printedName": "Swift.AutoreleasingUnsafeMutablePointer",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "usr": "s:SA"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)createWithLinkTokenConfiguration:error:",
- "mangledName": "$s7LinkKit8PLKPlaidC010createWithA18TokenConfiguration_5errorSo10PLKHandler_pSgSo07PLKLinkfG0C_SAySo7NSErrorCSgGSgtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "createWithLinkPublicKeyConfiguration",
- "printedName": "createWithLinkPublicKeyConfiguration(_:error:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKHandler?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKHandler",
- "printedName": "LinkKit.PLKHandler",
- "usr": "c:objc(pl)PLKHandler"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "PLKLinkPublicKeyConfiguration",
- "printedName": "LinkKit.PLKLinkPublicKeyConfiguration",
- "usr": "c:objc(cs)PLKLinkPublicKeyConfiguration"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.AutoreleasingUnsafeMutablePointer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AutoreleasingUnsafeMutablePointer",
- "printedName": "Swift.AutoreleasingUnsafeMutablePointer",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "usr": "s:SA"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)createWithLinkPublicKeyConfiguration:error:",
- "mangledName": "$s7LinkKit8PLKPlaidC010createWithA22PublicKeyConfiguration_5errorSo10PLKHandler_pSgSo07PLKLinkfgH0C_SAySo7NSErrorCSgGSgtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "sdkVersion",
- "printedName": "sdkVersion",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cpy)sdkVersion",
- "mangledName": "$s7LinkKit8PLKPlaidC10sdkVersionSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)sdkVersion",
- "mangledName": "$s7LinkKit8PLKPlaidC10sdkVersionSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaid",
- "printedName": "LinkKit.PLKPlaid",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(im)init",
- "mangledName": "$s7LinkKit8PLKPlaidCACycfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid",
- "mangledName": "$s7LinkKit8PLKPlaidC",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PLKPlaidConfigurationError",
- "printedName": "PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "Var",
- "name": "malformedClientID",
- "printedName": "malformedClientID",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorMalformedClientID",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO17malformedClientIDyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "missingAuthorization",
- "printedName": "missingAuthorization",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorMissingAuthorization",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO20missingAuthorizationyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "noProduct",
- "printedName": "noProduct",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorNoProduct",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO9noProductyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "invalidOptionValue",
- "printedName": "invalidOptionValue",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidOptionValue",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO18invalidOptionValueyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 3
- },
- {
- "kind": "Var",
- "name": "invalidOptionCombination",
- "printedName": "invalidOptionCombination",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidOptionCombination",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO24invalidOptionCombinationyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 4
- },
- {
- "kind": "Var",
- "name": "invalidEnvironmentValue",
- "printedName": "invalidEnvironmentValue",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidEnvironmentValue",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO23invalidEnvironmentValueyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 5
- },
- {
- "kind": "Var",
- "name": "invalidToken",
- "printedName": "invalidToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidToken",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO12invalidTokenyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 6
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKPlaidConfigurationError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueACSgSi_tcfc",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueACSgSi_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivp",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivg",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "enumRawTypeName": "Int",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PLKHandlerShim",
- "printedName": "PLKHandlerShim",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(handler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKHandlerShim",
- "printedName": "LinkKit.PLKHandlerShim",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim"
- },
- {
- "kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit14PLKHandlerShimC7handlerAcA7Handler_p_tcfc",
- "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAcA7Handler_p_tcfc",
- "moduleName": "LinkKit",
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "handler",
- "printedName": "handler",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvp",
- "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "HasStorage"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvg",
- "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentationHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandleryySo16UIViewControllerCc_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithPresentationHandler:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentationHandler:dismissalHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:dismissalHandler:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandler09dismissalG0yySo16UIViewControllerCc_yAHctF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithPresentationHandler:dismissalHandler:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(withContextViewController:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithContextViewController:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open25withContextViewControllerySo06UIViewI0C_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithContextViewController:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentationHandler:options:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:options:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandler7optionsyySo16UIViewControllerCc_SDyS2SGtF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithPresentationHandler:options:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentationHandler:dismissalHandler:options:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:dismissalHandler:options:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandler09dismissalG07optionsyySo16UIViewControllerCc_yAIcSDyS2SGtF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithPresentationHandler:dismissalHandler:options:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(withContextViewController:options:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithContextViewController:options:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open25withContextViewController7optionsySo06UIViewI0C_SDyS2SGtF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithContextViewController:options:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "createEmbeddedView",
- "printedName": "createEmbeddedView(_:errorCompletion:successCompletion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Error) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIView) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)createEmbeddedView:errorCompletion:successCompletion:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC18createEmbeddedView_15errorCompletion07successI0ySo16UIViewControllerC_ys5Error_pcySo0K0CctF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "createEmbeddedView:errorCompletion:successCompletion:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "createEmbeddedView",
- "printedName": "createEmbeddedView(_:dismissalHandler:errorCompletion:successCompletion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Error) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIView) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)createEmbeddedView:dismissalHandler:errorCompletion:successCompletion:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC18createEmbeddedView_16dismissalHandler15errorCompletion07successK0yySo16UIViewControllerCc_yAIcys5Error_pcySo0M0CctF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "createEmbeddedView:dismissalHandler:errorCompletion:successCompletion:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continue",
- "printedName": "continue(fromRedirectUri:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Error?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)continueFromRedirectUri:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC8continue15fromRedirectUris5Error_pSg10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "continueFromRedirectUri:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continue",
- "printedName": "continue(withRedirectUri:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)continueWithRedirectUri:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC8continue15withRedirectUriy10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "continueWithRedirectUri:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "resume",
- "printedName": "resume(afterTermination:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)resumeAfterTermination:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC6resume16afterTerminationy10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "resumeAfterTermination:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKHandlerShim",
- "printedName": "LinkKit.PLKHandlerShim",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)init",
- "mangledName": "$s7LinkKit14PLKHandlerShimCACycfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim",
- "mangledName": "$s7LinkKit14PLKHandlerShimC",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "superclassNames": [
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ExitErrorRawCode",
- "printedName": "ExitErrorRawCode",
- "children": [
- {
- "kind": "Var",
- "name": "int",
- "printedName": "int",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.Int) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Int) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorRawCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit16ExitErrorRawCodeO3intyACSicACmF",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO3intyACSicACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "string",
- "printedName": "string",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.String) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorRawCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit16ExitErrorRawCodeO6stringyACSScACmF",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO6stringyACSScACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "unknownTypeAndCode",
- "printedName": "unknownTypeAndCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.String, Swift.String) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(type: Swift.String, code: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorRawCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit16ExitErrorRawCodeO014unknownTypeAndF0yACSS_SStcACmF",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO014unknownTypeAndF0yACSS_SStcACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 2
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit16ExitErrorRawCodeO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit16ExitErrorRawCodeO",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO",
- "moduleName": "LinkKit",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InternalExpressibleByStringLiteral",
- "printedName": "InternalExpressibleByStringLiteral",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringLiteral:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP06stringG0xSS_tcfc",
- "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP06stringG0xSS_tcfc",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalExpressibleByStringLiteral>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP",
- "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InternalStringRepresentable",
- "printedName": "InternalStringRepresentable",
- "children": [
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit27InternalStringRepresentablePAAE6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit27InternalStringRepresentablePAAE6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalStringRepresentable>",
- "sugared_genericSig": "",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit27InternalStringRepresentableP",
- "mangledName": "$s7LinkKit27InternalStringRepresentableP",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 : LinkKit.InternalExpressibleByStringLiteral, τ_0_0 : Swift.CustomStringConvertible>",
- "sugared_genericSig": "",
- "conformances": [
- {
- "kind": "Conformance",
- "name": "InternalExpressibleByStringLiteral",
- "printedName": "InternalExpressibleByStringLiteral",
- "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP",
- "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "Component",
- "printedName": "Component",
- "children": [
- {
- "kind": "Function",
- "name": "asset",
- "printedName": "asset(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "Asset",
- "printedName": "Threads.Asset",
- "usr": "s:7Threads5AssetO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV5assetyAC7Threads5AssetOFZ",
- "mangledName": "$s7LinkKit9ComponentV5assetyAC7Threads5AssetOFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "header",
- "printedName": "header(_:_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "TextKind",
- "printedName": "Threads.TextKind",
- "hasDefaultArg": true,
- "usr": "s:7Threads8TextKindO"
- },
- {
- "kind": "TypeNominal",
- "name": "NSTextAlignment",
- "printedName": "UIKit.NSTextAlignment",
- "hasDefaultArg": true,
- "usr": "c:@E@NSTextAlignment"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV6headeryACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
- "mangledName": "$s7LinkKit9ComponentV6headeryACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "body",
- "printedName": "body(_:_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "TextKind",
- "printedName": "Threads.TextKind",
- "hasDefaultArg": true,
- "usr": "s:7Threads8TextKindO"
- },
- {
- "kind": "TypeNominal",
- "name": "NSTextAlignment",
- "printedName": "UIKit.NSTextAlignment",
- "hasDefaultArg": true,
- "usr": "c:@E@NSTextAlignment"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV4bodyyACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
- "mangledName": "$s7LinkKit9ComponentV4bodyyACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "button",
- "printedName": "button(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "ButtonViewModel",
- "printedName": "Threads.ButtonViewModel",
- "usr": "s:7Threads15ButtonViewModelV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV6buttonyAC7Threads15ButtonViewModelVFZ",
- "mangledName": "$s7LinkKit9ComponentV6buttonyAC7Threads15ButtonViewModelVFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "textInput",
- "printedName": "textInput(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "TextInputViewModel",
- "printedName": "Threads.TextInputViewModel",
- "usr": "s:7Threads18TextInputViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV9textInputyAC7Threads04TextE9ViewModelCFZ",
- "mangledName": "$s7LinkKit9ComponentV9textInputyAC7Threads04TextE9ViewModelCFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "stack",
- "printedName": "stack(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Component]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV5stackyACSayACGFZ",
- "mangledName": "$s7LinkKit9ComponentV5stackyACSayACGFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "spaceAbove",
- "printedName": "spaceAbove(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:12CoreGraphics7CGFloatV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV10spaceAboveyAC12CoreGraphics7CGFloatVF",
- "mangledName": "$s7LinkKit9ComponentV10spaceAboveyAC12CoreGraphics7CGFloatVF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "spaceBelow",
- "printedName": "spaceBelow(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:12CoreGraphics7CGFloatV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV10spaceBelowyAC12CoreGraphics7CGFloatVF",
- "mangledName": "$s7LinkKit9ComponentV10spaceBelowyAC12CoreGraphics7CGFloatVF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "margin",
- "printedName": "margin(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV6marginyACSo12UIEdgeInsetsVF",
- "mangledName": "$s7LinkKit9ComponentV6marginyACSo12UIEdgeInsetsVF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "show",
- "printedName": "show(in:)",
+ "name": "show",
+ "printedName": "show(in:)",
"children": [
{
"kind": "TypeNominal",
@@ -47609,7 +42077,7 @@
"kind": "TypeNominal",
"name": "CGFloat",
"printedName": "CoreGraphics.CGFloat",
- "usr": "s:12CoreGraphics7CGFloatV"
+ "usr": "s:14CoreFoundation7CGFloatV"
}
]
},
@@ -47630,7 +42098,7 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO5exactyAG12CoreGraphics7CGFloatVcAGmF",
+ "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO5exactyAG14CoreFoundation7CGFloatVcAGmF",
"mangledName": "$s7LinkKit9ComponentV6LayoutV19HorizontalDimensionO5exactyAG12CoreGraphics7CGFloatVcAGmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 0
@@ -47665,13 +42133,13 @@
"kind": "TypeNominal",
"name": "CGFloat",
"printedName": "CoreGraphics.CGFloat",
- "usr": "s:12CoreGraphics7CGFloatV"
+ "usr": "s:14CoreFoundation7CGFloatV"
},
{
"kind": "TypeNominal",
"name": "CGFloat",
"printedName": "CoreGraphics.CGFloat",
- "usr": "s:12CoreGraphics7CGFloatV"
+ "usr": "s:14CoreFoundation7CGFloatV"
}
]
}
@@ -47694,7 +42162,7 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO4fillyAG12CoreGraphics7CGFloatV_AKtcAGmF",
+ "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO4fillyAG14CoreFoundation7CGFloatV_AKtcAGmF",
"mangledName": "$s7LinkKit9ComponentV6LayoutV19HorizontalDimensionO4fillyAG12CoreGraphics7CGFloatV_AKtcAGmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 1
@@ -47787,7 +42255,7 @@
"kind": "TypeNominal",
"name": "CGFloat",
"printedName": "CoreGraphics.CGFloat",
- "usr": "s:12CoreGraphics7CGFloatV"
+ "usr": "s:14CoreFoundation7CGFloatV"
}
]
},
@@ -47808,7 +42276,7 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9ComponentV6LayoutV17VerticalDimensionO5exactyAG12CoreGraphics7CGFloatVcAGmF",
+ "usr": "s:7LinkKit9ComponentV6LayoutV17VerticalDimensionO5exactyAG14CoreFoundation7CGFloatVcAGmF",
"mangledName": "$s7LinkKit9ComponentV6LayoutV17VerticalDimensionO5exactyAG12CoreGraphics7CGFloatVcAGmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 0
@@ -48276,402 +42744,337 @@
},
{
"kind": "TypeDecl",
- "name": "ConsentPaneViewController",
- "printedName": "ConsentPaneViewController",
+ "name": "DeviceInfoProvider",
+ "printedName": "DeviceInfoProvider",
"children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
+ "kind": "Var",
+ "name": "model",
+ "printedName": "model",
"children": [
{
"kind": "TypeNominal",
- "name": "ConsentPaneViewController",
- "printedName": "LinkKit.ConsentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "ConsentViewModel",
- "printedName": "Workflow.ConsentViewModel",
- "usr": "s:8Workflow16ConsentViewModelC"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18DeviceInfoProviderV5modelSSvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV5modelSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
- "children": [
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ConsentPaneViewController?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ConsentPaneViewController",
- "printedName": "LinkKit.ConsentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV5modelSSvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV5modelSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "kind": "Var",
+ "name": "systemVersion",
+ "printedName": "systemVersion",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC11viewDidLoadyyF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18DeviceInfoProviderV13systemVersionSSvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV13systemVersionSSvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV13systemVersionSSvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV13systemVersionSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC13viewDidAppearyySbF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "machine",
+ "printedName": "machine",
"children": [
{
"kind": "TypeNominal",
- "name": "ConsentViewModel",
- "printedName": "Workflow.ConsentViewModel",
- "usr": "s:8Workflow16ConsentViewModelC"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC9viewModel33_3A2E76AA8A9D2EB797486DDAA7C1D235LL8Workflow0ceH0Cvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC9viewModel33_3A2E76AA8A9D2EB797486DDAA7C1D235LL8Workflow0ceH0Cvp",
+ "usr": "s:7LinkKit18DeviceInfoProviderV7machineSSvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV7machineSSvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 0,
+ "fixedbinaryorder": 2,
"isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "headerLabel",
- "printedName": "headerLabel",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "UILabel",
- "printedName": "UIKit.UILabel",
- "usr": "c:objc(cs)UILabel"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV7machineSSvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV7machineSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC11headerLabel33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo7UILabelCvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC11headerLabel33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo7UILabelCvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "sectionsView",
- "printedName": "sectionsView",
+ "name": "contentSizeCategory",
+ "printedName": "contentSizeCategory",
"children": [
{
"kind": "TypeNominal",
- "name": "UIStackView",
- "printedName": "UIKit.UIStackView",
- "usr": "c:objc(cs)UIStackView"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC08sectionsE033_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo07UIStackE0Cvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC08sectionsE033_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo07UIStackE0Cvp",
+ "usr": "s:7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
+ "fixedbinaryorder": 3,
"isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "consentButton",
- "printedName": "consentButton",
+ "name": "screenHeight",
+ "printedName": "screenHeight",
"children": [
{
"kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC13consentButton33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo8UIButtonCvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC13consentButton33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo8UIButtonCvp",
+ "usr": "s:7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 3,
+ "fixedbinaryorder": 4,
"isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "exitButton",
- "printedName": "exitButton",
+ "name": "screenWidth",
+ "printedName": "screenWidth",
"children": [
{
"kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC10exitButton33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo8UIButtonCvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC10exitButton33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo8UIButtonCvp",
+ "usr": "s:7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 4,
+ "fixedbinaryorder": 5,
"isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ConsentPaneViewController",
- "printedName": "LinkKit.ConsentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController"
- },
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
}
],
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
+ "name": "DeviceInfoProvider",
+ "printedName": "LinkKit.DeviceInfoProvider",
+ "usr": "s:7LinkKit18DeviceInfoProviderV"
}
],
"declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "usr": "s:7LinkKit18DeviceInfoProviderVACycfc",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderVACycfc",
"moduleName": "LinkKit",
- "overriding": true,
"implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
"init_kind": "Designated"
}
],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit18DeviceInfoProviderV",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
+ "AccessControl"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "DeviceInfoProviding",
+ "printedName": "DeviceInfoProviding",
+ "usr": "s:8Workflow19DeviceInfoProvidingP",
+ "mangledName": "$s8Workflow19DeviceInfoProvidingP"
},
{
"kind": "Conformance",
@@ -48682,32 +43085,15 @@
}
]
},
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "DeviceInfoProvider",
- "printedName": "DeviceInfoProvider",
+ "name": "LocaleInfoProvider",
+ "printedName": "LocaleInfoProvider",
"children": [
{
"kind": "Var",
- "name": "model",
- "printedName": "model",
+ "name": "identifier",
+ "printedName": "identifier",
"children": [
{
"kind": "TypeNominal",
@@ -48717,8 +43103,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV5modelSSvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV5modelSSvp",
+ "usr": "s:7LinkKit18LocaleInfoProviderV10identifierSSvp",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV10identifierSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -48742,8 +43128,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV5modelSSvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV5modelSSvg",
+ "usr": "s:7LinkKit18LocaleInfoProviderV10identifierSSvg",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV10identifierSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48755,8 +43141,187 @@
},
{
"kind": "Var",
- "name": "systemVersion",
- "printedName": "systemVersion",
+ "name": "regionCode",
+ "printedName": "regionCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18LocaleInfoProviderV10regionCodeSSSgvp",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV10regionCodeSSSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18LocaleInfoProviderV10regionCodeSSSgvg",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV10regionCodeSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "languageCode",
+ "printedName": "languageCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18LocaleInfoProviderV12languageCodeSSSgvp",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV12languageCodeSSSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 2,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18LocaleInfoProviderV12languageCodeSSSgvg",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV12languageCodeSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LocaleInfoProvider",
+ "printedName": "LinkKit.LocaleInfoProvider",
+ "usr": "s:7LinkKit18LocaleInfoProviderV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit18LocaleInfoProviderVACycfc",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderVACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit18LocaleInfoProviderV",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "LocaleInfoProviding",
+ "printedName": "LocaleInfoProviding",
+ "usr": "s:8Workflow19LocaleInfoProvidingP",
+ "mangledName": "$s8Workflow19LocaleInfoProvidingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "SDKInfoProvider",
+ "printedName": "SDKInfoProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "name",
+ "printedName": "name",
"children": [
{
"kind": "TypeNominal",
@@ -48766,15 +43331,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV13systemVersionSSvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV13systemVersionSSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV4nameSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV4nameSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 1,
+ "fixedbinaryorder": 0,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -48791,8 +43356,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV13systemVersionSSvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV13systemVersionSSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV4nameSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV4nameSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48804,8 +43369,8 @@
},
{
"kind": "Var",
- "name": "machine",
- "printedName": "machine",
+ "name": "version",
+ "printedName": "version",
"children": [
{
"kind": "TypeNominal",
@@ -48815,15 +43380,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV7machineSSvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV7machineSSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV7versionSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV7versionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
+ "fixedbinaryorder": 1,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -48840,8 +43405,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV7machineSSvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV7machineSSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV7versionSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV7versionSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48853,8 +43418,8 @@
},
{
"kind": "Var",
- "name": "contentSizeCategory",
- "printedName": "contentSizeCategory",
+ "name": "id",
+ "printedName": "id",
"children": [
{
"kind": "TypeNominal",
@@ -48864,15 +43429,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV2idSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV2idSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 3,
+ "fixedbinaryorder": 2,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -48889,8 +43454,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV2idSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV2idSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48902,26 +43467,26 @@
},
{
"kind": "Var",
- "name": "screenHeight",
- "printedName": "screenHeight",
+ "name": "build",
+ "printedName": "build",
"children": [
{
"kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV5buildSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV5buildSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 4,
+ "fixedbinaryorder": 3,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -48932,14 +43497,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV5buildSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV5buildSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48951,26 +43516,26 @@
},
{
"kind": "Var",
- "name": "screenWidth",
- "printedName": "screenWidth",
+ "name": "branch",
+ "printedName": "branch",
"children": [
{
"kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV6branchSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV6branchSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 5,
+ "fixedbinaryorder": 4,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -48981,14 +43546,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV6branchSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV6branchSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48998,59 +43563,10 @@
}
]
},
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DeviceInfoProvider",
- "printedName": "LinkKit.DeviceInfoProvider",
- "usr": "s:7LinkKit18DeviceInfoProviderV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18DeviceInfoProviderVACycfc",
- "mangledName": "$s7LinkKit18DeviceInfoProviderVACycfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit18DeviceInfoProviderV",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "DeviceInfoProviding",
- "printedName": "DeviceInfoProviding",
- "usr": "s:8Workflow19DeviceInfoProvidingP",
- "mangledName": "$s8Workflow19DeviceInfoProvidingP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LocaleInfoProvider",
- "printedName": "LocaleInfoProvider",
- "children": [
{
"kind": "Var",
- "name": "identifier",
- "printedName": "identifier",
+ "name": "commit",
+ "printedName": "commit",
"children": [
{
"kind": "TypeNominal",
@@ -49060,15 +43576,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18LocaleInfoProviderV10identifierSSvp",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV10identifierSSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV6commitSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV6commitSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 0,
+ "fixedbinaryorder": 5,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -49085,8 +43601,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18LocaleInfoProviderV10identifierSSvg",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV10identifierSSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV6commitSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV6commitSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -49098,8 +43614,8 @@
},
{
"kind": "Var",
- "name": "regionCode",
- "printedName": "regionCode",
+ "name": "reactNativeSDKVersion",
+ "printedName": "reactNativeSDKVersion",
"children": [
{
"kind": "TypeNominal",
@@ -49117,15 +43633,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18LocaleInfoProviderV10regionCodeSSSgvp",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV10regionCodeSSSgvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 1,
+ "fixedbinaryorder": 6,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -49150,8 +43666,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18LocaleInfoProviderV10regionCodeSSSgvg",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV10regionCodeSSSgvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -49163,34 +43679,26 @@
},
{
"kind": "Var",
- "name": "languageCode",
- "printedName": "languageCode",
+ "name": "isRunningFlutterSDK",
+ "printedName": "isRunningFlutterSDK",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18LocaleInfoProviderV12languageCodeSSSgvp",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV12languageCodeSSSgvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
+ "fixedbinaryorder": 7,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -49201,22 +43709,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18LocaleInfoProviderV12languageCodeSSSgvg",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV12languageCodeSSSgvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -49233,22 +43733,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "LocaleInfoProvider",
- "printedName": "LinkKit.LocaleInfoProvider",
- "usr": "s:7LinkKit18LocaleInfoProviderV"
+ "name": "SDKInfoProvider",
+ "printedName": "LinkKit.SDKInfoProvider",
+ "usr": "s:7LinkKit15SDKInfoProviderV"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit18LocaleInfoProviderVACycfc",
- "mangledName": "$s7LinkKit18LocaleInfoProviderVACycfc",
+ "usr": "s:7LinkKit15SDKInfoProviderVACycfc",
+ "mangledName": "$s7LinkKit15SDKInfoProviderVACycfc",
"moduleName": "LinkKit",
"implicit": true,
"init_kind": "Designated"
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit18LocaleInfoProviderV",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV",
+ "usr": "s:7LinkKit15SDKInfoProviderV",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -49256,10 +43756,10 @@
"conformances": [
{
"kind": "Conformance",
- "name": "LocaleInfoProviding",
- "printedName": "LocaleInfoProviding",
- "usr": "s:8Workflow19LocaleInfoProvidingP",
- "mangledName": "$s8Workflow19LocaleInfoProvidingP"
+ "name": "SDKInfoProviding",
+ "printedName": "SDKInfoProviding",
+ "usr": "s:8Workflow16SDKInfoProvidingP",
+ "mangledName": "$s8Workflow16SDKInfoProvidingP"
},
{
"kind": "Conformance",
@@ -49270,187 +43770,490 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "WebKit",
+ "printedName": "WebKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AuthenticationServices",
+ "printedName": "AuthenticationServices",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "SDKInfoProvider",
- "printedName": "SDKInfoProvider",
+ "name": "InProcessWebviewFallbackController",
+ "printedName": "InProcessWebviewFallbackController",
"children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(viewModel:log:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InProcessWebviewFallbackController",
+ "printedName": "LinkKit.InProcessWebviewFallbackController",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WebViewFallbackViewModel",
+ "printedName": "Workflow.WebViewFallbackViewModel",
+ "usr": "s:8Workflow015WebViewFallbackC5ModelC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9viewModel3logAC8Workflow07WebViewfmI0C_3LogAIVtcfc",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9viewModel3logAC8Workflow07WebViewfmI0C_3LogAIVtcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.InProcessWebviewFallbackController?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InProcessWebviewFallbackController",
+ "printedName": "LinkKit.InProcessWebviewFallbackController",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC5coderACSgSo7NSCoderC_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC11viewDidLoadyyF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidAppear",
+ "printedName": "viewDidAppear(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)viewDidAppear:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC13viewDidAppearyySbF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidAppear:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
{
"kind": "Var",
- "name": "name",
- "printedName": "name",
+ "name": "log",
+ "printedName": "log",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV4nameSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV4nameSSvp",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC3log33_32F4DB776C6A6928E36575C991298D05LL3LogAFVvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC3log33_32F4DB776C6A6928E36575C991298D05LL3LogAFVvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "stackView",
+ "printedName": "stackView",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UIStackView",
+ "printedName": "UIKit.UIStackView",
+ "usr": "c:objc(cs)UIStackView"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9stackView33_32F4DB776C6A6928E36575C991298D05LLSo07UIStackI0Cvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9stackView33_32F4DB776C6A6928E36575C991298D05LLSo07UIStackI0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 0,
+ "fixedbinaryorder": 1,
"isLet": true,
- "hasStorage": true,
- "accessors": [
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "webView",
+ "printedName": "webView",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC7webView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebI0Cvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebI0Cvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 2,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "popupWebView",
+ "printedName": "popupWebView",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "WebKit.WKWebView?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV4nameSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV4nameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC12popupWebView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebJ0CSgvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC12popupWebView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebJ0CSgvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 3,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "version",
- "printedName": "version",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "WebViewFallbackViewModel",
+ "printedName": "Workflow.WebViewFallbackViewModel",
+ "usr": "s:8Workflow015WebViewFallbackC5ModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV7versionSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV7versionSSvp",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9viewModel33_32F4DB776C6A6928E36575C991298D05LL8Workflow07WebViewfsI0Cvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9viewModel33_32F4DB776C6A6928E36575C991298D05LL8Workflow07WebViewfsI0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Custom",
+ "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 1,
+ "fixedbinaryorder": 4,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV7versionSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV7versionSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "id",
- "printedName": "id",
+ "name": "urlObserver",
+ "printedName": "urlObserver",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "AppCore.Observer?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Observer",
+ "printedName": "AppCore.Observer",
+ "usr": "s:7AppCore8ObserverC"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV2idSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV2idSSvp",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC11urlObserver33_32F4DB776C6A6928E36575C991298D05LL7AppCore0I0CSgvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC11urlObserver33_32F4DB776C6A6928E36575C991298D05LL7AppCore0I0CSgvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 5,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "webAuthenticationSession",
+ "printedName": "webAuthenticationSession",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ProtocolComposition",
+ "printedName": "Any"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV2idSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV2idSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC24webAuthenticationSession33_32F4DB776C6A6928E36575C991298D05LLypSgvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC24webAuthenticationSession33_32F4DB776C6A6928E36575C991298D05LLypSgvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 6,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "build",
- "printedName": "build",
+ "name": "$__lazy_storage_$_navigateBack",
+ "printedName": "$__lazy_storage_$_navigateBack",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "(() -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "() -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV5buildSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV5buildSSvp",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC30$__lazy_storage_$_navigateBack33_32F4DB776C6A6928E36575C991298D05LLyycSgvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC30$__lazy_storage_$_navigateBack33_32F4DB776C6A6928E36575C991298D05LLyycSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "Final"
],
- "fixedbinaryorder": 3,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 7,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "InProcessWebviewFallbackController",
+ "printedName": "LinkKit.InProcessWebviewFallbackController",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -49459,264 +44262,431 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV5buildSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV5buildSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "branch",
- "printedName": "branch",
- "children": [
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV6branchSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV6branchSSvp",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
],
- "fixedbinaryorder": 4,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:createWebViewWith:for:windowFeatures:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "WebKit.WKWebView?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV6branchSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV6branchSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebViewConfiguration",
+ "printedName": "WebKit.WKWebViewConfiguration",
+ "usr": "c:objc(cs)WKWebViewConfiguration"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKNavigationAction",
+ "printedName": "WebKit.WKNavigationAction",
+ "usr": "c:objc(cs)WKNavigationAction"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWindowFeatures",
+ "printedName": "WebKit.WKWindowFeatures",
+ "usr": "c:objc(cs)WKWindowFeatures"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_09createWebI4With3for14windowFeaturesSo05WKWebI0CSgAI_So0pI13ConfigurationCSo18WKNavigationActionCSo08WKWindowO0CtF",
+ "moduleName": "LinkKit",
+ "objc_name": "webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "commit",
- "printedName": "commit",
+ "kind": "Function",
+ "name": "webViewDidClose",
+ "printedName": "webViewDidClose(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV6commitSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV6commitSSvp",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webViewDidClose:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC15webViewDidCloseyySo05WKWebI0CF",
"moduleName": "LinkKit",
+ "objc_name": "webViewDidClose:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "fixedbinaryorder": 5,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:decideMediaCapturePermissionsFor:initiatedBy:type:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV6commitSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV6commitSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "WKPermissionDecision",
+ "printedName": "WebKit.WKPermissionDecision",
+ "usr": "c:@E@WKPermissionDecision"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKSecurityOrigin",
+ "printedName": "WebKit.WKSecurityOrigin",
+ "usr": "c:objc(cs)WKSecurityOrigin"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKFrameInfo",
+ "printedName": "WebKit.WKFrameInfo",
+ "usr": "c:objc(cs)WKFrameInfo"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKMediaCaptureType",
+ "printedName": "WebKit.WKMediaCaptureType",
+ "usr": "c:@E@WKMediaCaptureType"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_32decideMediaCapturePermissionsFor11initiatedBy4typeSo20WKPermissionDecisionVSo05WKWebI0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaL4TypeVtYaF",
+ "moduleName": "LinkKit",
+ "intro_iOS": "15.0",
+ "objc_name": "webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl",
+ "Available"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "reactNativeSDKVersion",
- "printedName": "reactNativeSDKVersion",
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:didFinish:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ImplicitlyUnwrappedOptional",
+ "printedName": "WebKit.WKNavigation?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "WKNavigation",
+ "printedName": "WebKit.WKNavigation",
+ "usr": "c:objc(cs)WKNavigation"
}
],
"usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvp",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:didFinishNavigation:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_9didFinishySo05WKWebI0C_So12WKNavigationCSgtF",
"moduleName": "LinkKit",
+ "objc_name": "webView:didFinishNavigation:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "fixedbinaryorder": 6,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:didCommit:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ImplicitlyUnwrappedOptional",
+ "printedName": "WebKit.WKNavigation?",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "WKNavigation",
+ "printedName": "WebKit.WKNavigation",
+ "usr": "c:objc(cs)WKNavigation"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:didCommitNavigation:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_9didCommitySo05WKWebI0C_So12WKNavigationCSgtF",
+ "moduleName": "LinkKit",
+ "objc_name": "webView:didCommitNavigation:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "isRunningFlutterSDK",
- "printedName": "isRunningFlutterSDK",
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:decidePolicyFor:decisionHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 7,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "name": "Void",
+ "printedName": "()"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKNavigationAction",
+ "printedName": "WebKit.WKNavigationAction",
+ "usr": "c:objc(cs)WKNavigationAction"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(WebKit.WKNavigationActionPolicy) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKNavigationActionPolicy",
+ "printedName": "WebKit.WKNavigationActionPolicy",
+ "usr": "c:@E@WKNavigationActionPolicy"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:decidePolicyForNavigationAction:decisionHandler:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_15decidePolicyFor15decisionHandlerySo05WKWebI0C_So18WKNavigationActionCySo0pqK0VctF",
+ "moduleName": "LinkKit",
+ "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
+ "kind": "Function",
+ "name": "presentationAnchor",
+ "printedName": "presentationAnchor(for:)",
"children": [
{
"kind": "TypeNominal",
- "name": "SDKInfoProvider",
- "printedName": "LinkKit.SDKInfoProvider",
- "usr": "s:7LinkKit15SDKInfoProviderV"
+ "name": "UIWindow",
+ "printedName": "UIKit.UIWindow",
+ "usr": "c:objc(cs)UIWindow"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ASWebAuthenticationSession",
+ "printedName": "AuthenticationServices.ASWebAuthenticationSession",
+ "usr": "c:objc(cs)ASWebAuthenticationSession"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit15SDKInfoProviderVACycfc",
- "mangledName": "$s7LinkKit15SDKInfoProviderVACycfc",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)presentationAnchorForWebAuthenticationSession:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "objc_name": "presentationAnchorForWebAuthenticationSession:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Struct",
- "usr": "s:7LinkKit15SDKInfoProviderV",
- "mangledName": "$s7LinkKit15SDKInfoProviderV",
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
],
"conformances": [
{
"kind": "Conformance",
- "name": "SDKInfoProviding",
- "printedName": "SDKInfoProviding",
- "usr": "s:8Workflow16SDKInfoProvidingP",
- "mangledName": "$s8Workflow16SDKInfoProvidingP"
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
},
{
"kind": "Conformance",
@@ -49739,23 +44709,10 @@
},
{
"kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
+ "name": "SafariServices",
+ "printedName": "SafariServices",
"declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
+ "moduleName": "LinkKit"
},
{
"kind": "Import",
@@ -49800,192 +44757,116 @@
},
{
"kind": "TypeDecl",
- "name": "InProcessWebviewFallbackController",
- "printedName": "InProcessWebviewFallbackController",
+ "name": "EmbeddedSearchView",
+ "printedName": "EmbeddedSearchView",
"children": [
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(viewModel:log:)",
+ "printedName": "init(viewModel:handler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "InProcessWebviewFallbackController",
- "printedName": "LinkKit.InProcessWebviewFallbackController",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ "name": "EmbeddedSearchView",
+ "printedName": "LinkKit.EmbeddedSearchView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchView"
},
{
"kind": "TypeNominal",
- "name": "WebViewFallbackViewModel",
- "printedName": "Workflow.WebViewFallbackViewModel",
- "usr": "s:8Workflow015WebViewFallbackC5ModelC"
+ "name": "EmbeddedSearchViewModel",
+ "printedName": "Workflow.EmbeddedSearchViewModel",
+ "usr": "s:8Workflow23EmbeddedSearchViewModelC"
},
{
"kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9viewModel3logAC8Workflow07WebViewfmI0C_3LogAIVtcfc",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9viewModel3logAC8Workflow07WebViewfmI0C_3LogAIVtcfc",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC9viewModel7handlerAC8Workflow0cdeG0C_AA7Handler_ptcfc",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC9viewModel7handlerAC8Workflow0cdeG0C_AA7Handler_ptcfc",
"moduleName": "LinkKit",
"declAttributes": [
"Custom",
- "AccessControl",
"RawDocComment"
],
"init_kind": "Designated"
},
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.InProcessWebviewFallbackController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InProcessWebviewFallbackController",
- "printedName": "LinkKit.InProcessWebviewFallbackController",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)initWithCoder:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC5coderACSgSo7NSCoderC_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)viewDidLoad",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC11viewDidLoadyyF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC13viewDidAppearyySbF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override"
- ],
- "funcSelfKind": "NonMutating"
- },
{
"kind": "Var",
- "name": "log",
- "printedName": "log",
+ "name": "handler",
+ "printedName": "handler",
"children": [
{
"kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC3log33_32F4DB776C6A6928E36575C991298D05LL3LogAFVvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC3log33_32F4DB776C6A6928E36575C991298D05LL3LogAFVvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
"Custom",
"Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"fixedbinaryorder": 0,
"isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvg",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "stackView",
- "printedName": "stackView",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "UIStackView",
- "printedName": "UIKit.UIStackView",
- "usr": "c:objc(cs)UIStackView"
+ "name": "EmbeddedSearchViewModel",
+ "printedName": "Workflow.EmbeddedSearchViewModel",
+ "usr": "s:8Workflow23EmbeddedSearchViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9stackView33_32F4DB776C6A6928E36575C991298D05LLSo07UIStackI0Cvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9stackView33_32F4DB776C6A6928E36575C991298D05LLSo07UIStackI0Cvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC9viewModel33_56CDF6B379D3F8DEF2746A7281DF5920LL8Workflow0cdeG0Cvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC9viewModel33_56CDF6B379D3F8DEF2746A7281DF5920LL8Workflow0cdeG0Cvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
"Custom",
- "HasInitialValue",
"Final",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"fixedbinaryorder": 1,
"isLet": true,
@@ -50004,12 +44885,13 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC7webView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebI0Cvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebI0Cvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC03webE033_56CDF6B379D3F8DEF2746A7281DF5920LLSo05WKWebE0Cvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC03webE033_56CDF6B379D3F8DEF2746A7281DF5920LLSo05WKWebE0Cvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
"Custom",
+ "HasInitialValue",
"Final",
"HasStorage",
"AccessControl"
@@ -50020,27 +44902,27 @@
},
{
"kind": "Var",
- "name": "popupWebView",
- "printedName": "popupWebView",
+ "name": "embeddedSearchAndSelectView",
+ "printedName": "embeddedSearchAndSelectView",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "WebKit.WKWebView?",
+ "printedName": "LinkKit.EmbeddedSearchAndSelectView?",
"children": [
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "EmbeddedSearchAndSelectView",
+ "printedName": "LinkKit.EmbeddedSearchAndSelectView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC12popupWebView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebJ0CSgvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC12popupWebView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebJ0CSgvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC08embeddedd9AndSelectE033_56CDF6B379D3F8DEF2746A7281DF5920LLAA0cdghE0CSgvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC08embeddedd9AndSelectE033_56CDF6B379D3F8DEF2746A7281DF5920LLAA0cdghE0CSgvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
@@ -50055,23 +44937,24 @@
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "activityIndicator",
+ "printedName": "activityIndicator",
"children": [
{
"kind": "TypeNominal",
- "name": "WebViewFallbackViewModel",
- "printedName": "Workflow.WebViewFallbackViewModel",
- "usr": "s:8Workflow015WebViewFallbackC5ModelC"
+ "name": "PlaidActivityIndicator",
+ "printedName": "Threads.PlaidActivityIndicator",
+ "usr": "c:@M@Threads@objc(cs)PlaidActivityIndicator"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9viewModel33_32F4DB776C6A6928E36575C991298D05LL8Workflow07WebViewfsI0Cvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9viewModel33_32F4DB776C6A6928E36575C991298D05LL8Workflow07WebViewfsI0Cvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC17activityIndicator33_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads013PlaidActivityG0Cvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC17activityIndicator33_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads013PlaidActivityG0Cvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
"Custom",
+ "HasInitialValue",
"Final",
"HasStorage",
"AccessControl"
@@ -50082,61 +44965,62 @@
},
{
"kind": "Var",
- "name": "urlObserver",
- "printedName": "urlObserver",
+ "name": "$__lazy_storage_$_errorView",
+ "printedName": "$__lazy_storage_$_errorView",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "AppCore.Observer?",
+ "printedName": "Threads.ErrorView?",
"children": [
{
"kind": "TypeNominal",
- "name": "Observer",
- "printedName": "AppCore.Observer",
- "usr": "s:7AppCore8ObserverC"
+ "name": "ErrorView",
+ "printedName": "Threads.ErrorView",
+ "usr": "c:@M@Threads@objc(cs)ErrorView"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC11urlObserver33_32F4DB776C6A6928E36575C991298D05LL7AppCore0I0CSgvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC11urlObserver33_32F4DB776C6A6928E36575C991298D05LL7AppCore0I0CSgvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC023$__lazy_storage_$_errorE033_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads05ErrorE0CSgvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC023$__lazy_storage_$_errorE033_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads05ErrorE0CSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
"isInternal": true,
"declAttributes": [
"Custom",
"HasInitialValue",
- "Final",
"HasStorage",
- "AccessControl"
+ "Final"
],
"fixedbinaryorder": 5,
"hasStorage": true
},
{
"kind": "Var",
- "name": "webAuthenticationSession",
- "printedName": "webAuthenticationSession",
+ "name": "presentedViewController",
+ "printedName": "presentedViewController",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Any?",
+ "printedName": "UIKit.UIViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC24webAuthenticationSession33_32F4DB776C6A6928E36575C991298D05LLypSgvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC24webAuthenticationSession33_32F4DB776C6A6928E36575C991298D05LLypSgvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC09presentedE10Controller33_56CDF6B379D3F8DEF2746A7281DF5920LLSo06UIViewG0CSgvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC09presentedE10Controller33_56CDF6B379D3F8DEF2746A7281DF5920LLSo06UIViewG0CSgvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
@@ -50144,175 +45028,132 @@
"HasInitialValue",
"Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 6,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "$__lazy_storage_$_navigateBack",
- "printedName": "$__lazy_storage_$_navigateBack",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "(() -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC30$__lazy_storage_$_navigateBack33_32F4DB776C6A6928E36575C991298D05LLyycSgvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC30$__lazy_storage_$_navigateBack33_32F4DB776C6A6928E36575C991298D05LLyycSgvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
+ "AccessControl"
],
- "fixedbinaryorder": 7,
+ "fixedbinaryorder": 6,
"hasStorage": true
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:decidePolicyFor:decisionHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "InProcessWebviewFallbackController",
- "printedName": "LinkKit.InProcessWebviewFallbackController",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "name": "WKNavigationAction",
+ "printedName": "WebKit.WKNavigationAction",
+ "usr": "c:objc(cs)WKNavigationAction"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(WebKit.WKNavigationActionPolicy) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKNavigationActionPolicy",
+ "printedName": "WebKit.WKNavigationActionPolicy",
+ "usr": "c:@E@WKNavigationActionPolicy"
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchView(im)webView:decidePolicyForNavigationAction:decisionHandler:",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC03webE0_15decidePolicyFor15decisionHandlerySo05WKWebE0C_So18WKNavigationActionCySo0mnH0VctF",
"moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
+ "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:",
"declAttributes": [
- "Dynamic",
+ "Final",
"ObjC",
"Custom",
- "Override"
+ "AccessControl"
],
- "init_kind": "Designated"
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webView",
- "printedName": "webView(_:createWebViewWith:for:windowFeatures:)",
+ "name": "stateUpdated",
+ "printedName": "stateUpdated(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "WebKit.WKWebView?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- }
- ],
- "usr": "s:Sq"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- },
+ "name": "EmbeddedSearchState",
+ "printedName": "Workflow.EmbeddedSearchState",
+ "usr": "s:8Workflow19EmbeddedSearchStateO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC12stateUpdated2toy8Workflow0cD5StateO_tF",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC12stateUpdated2toy8Workflow0cD5StateO_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(url:popupBehavior:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "WKWebViewConfiguration",
- "printedName": "WebKit.WKWebViewConfiguration",
- "usr": "c:objc(cs)WKWebViewConfiguration"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "WKNavigationAction",
- "printedName": "WebKit.WKNavigationAction",
- "usr": "c:objc(cs)WKNavigationAction"
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
},
{
"kind": "TypeNominal",
- "name": "WKWindowFeatures",
- "printedName": "WebKit.WKWindowFeatures",
- "usr": "c:objc(cs)WKWindowFeatures"
+ "name": "EmbeddedSearchPopupBehavior",
+ "printedName": "Workflow.EmbeddedSearchPopupBehavior",
+ "usr": "s:8Workflow27EmbeddedSearchPopupBehaviorO"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_09createWebI4With3for14windowFeaturesSo05WKWebI0CSgAI_So0pI13ConfigurationCSo18WKNavigationActionCSo08WKWindowO0CtF",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC4open3url13popupBehaviory10Foundation3URLV_8Workflow0cd5PopupI0OtF",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC4open3url13popupBehaviory10Foundation3URLV_8Workflow0cd5PopupI0OtF",
"moduleName": "LinkKit",
- "objc_name": "webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:",
"declAttributes": [
- "Final",
- "ObjC",
"Custom",
- "AccessControl"
+ "Final"
],
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webViewDidClose",
- "printedName": "webViewDidClose(_:)",
+ "name": "present",
+ "printedName": "present(modal:)",
"children": [
{
"kind": "TypeNominal",
@@ -50321,126 +45162,440 @@
},
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "SDKModal",
+ "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_SDKInternalEvent.SDKModal",
+ "usr": "s:13WorkflowProto05Link_A29_Nodes_Panes_SDKInternalEventV8SDKModalV"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webViewDidClose:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC15webViewDidCloseyySo05WKWebI0CF",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC7present5modaly13WorkflowProto0a1_H29_Nodes_Panes_SDKInternalEventV8SDKModalV_tF",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC7present5modaly13WorkflowProto0a1_H29_Nodes_Panes_SDKInternalEventV8SDKModalV_tF",
"moduleName": "LinkKit",
- "objc_name": "webViewDidClose:",
"declAttributes": [
- "Final",
- "ObjC",
"Custom",
- "AccessControl"
+ "Final"
],
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webView",
- "printedName": "webView(_:decideMediaCapturePermissionsFor:initiatedBy:type:)",
+ "name": "hideModal",
+ "printedName": "hideModal(hide:)",
"children": [
{
"kind": "TypeNominal",
- "name": "WKPermissionDecision",
- "printedName": "WebKit.WKPermissionDecision",
- "usr": "c:@E@WKPermissionDecision"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC9hideModal0F0ySb_tF",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC9hideModal0F0ySb_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchView",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIView",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "UIKit.UIView",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "EmbeddedSearchViewModelDelegate",
+ "printedName": "EmbeddedSearchViewModelDelegate",
+ "usr": "s:8Workflow31EmbeddedSearchViewModelDelegateP",
+ "mangledName": "$s8Workflow31EmbeddedSearchViewModelDelegateP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "__DefaultCustomPlaygroundQuickLookable",
+ "printedName": "__DefaultCustomPlaygroundQuickLookable",
+ "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
+ "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "LayoutArea",
+ "printedName": "LayoutArea",
+ "usr": "s:9AppCoreUI10LayoutAreaP",
+ "mangledName": "$s9AppCoreUI10LayoutAreaP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "FlutterLinkKit",
+ "printedName": "FlutterLinkKit",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "isRunningFlutter",
+ "printedName": "isRunningFlutter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvpZ",
+ "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvgZ",
+ "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvsZ",
+ "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvsZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "set"
},
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvMZ",
+ "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvMZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "WKSecurityOrigin",
- "printedName": "WebKit.WKSecurityOrigin",
- "usr": "c:objc(cs)WKSecurityOrigin"
+ "name": "FlutterLinkKit",
+ "printedName": "LinkKit.FlutterLinkKit",
+ "usr": "s:7LinkKit07FlutteraB0V"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit07FlutteraB0VACycfc",
+ "mangledName": "$s7LinkKit07FlutteraB0VACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit07FlutteraB0V",
+ "mangledName": "$s7LinkKit07FlutteraB0V",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "RoutingNumberValidator",
+ "printedName": "RoutingNumberValidator",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "isValid",
+ "printedName": "isValid(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
"kind": "TypeNominal",
- "name": "WKFrameInfo",
- "printedName": "WebKit.WKFrameInfo",
- "usr": "c:objc(cs)WKFrameInfo"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit22RoutingNumberValidatorO7isValidySbSSFZ",
+ "mangledName": "$s7LinkKit22RoutingNumberValidatorO7isValidySbSSFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit22RoutingNumberValidatorO",
+ "mangledName": "$s7LinkKit22RoutingNumberValidatorO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Handler",
+ "printedName": "Handler",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(presentUsing:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "WKMediaCaptureType",
- "printedName": "WebKit.WKMediaCaptureType",
- "usr": "c:@E@WKMediaCaptureType"
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_32decideMediaCapturePermissionsFor11initiatedBy4typeSo20WKPermissionDecisionVSo05WKWebI0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaL4TypeVtYaF",
+ "usr": "s:7LinkKit7HandlerP4open12presentUsingyAA18PresentationMethodO_tF",
+ "mangledName": "$s7LinkKit7HandlerP4open12presentUsingyAA18PresentationMethodO_tF",
"moduleName": "LinkKit",
- "intro_iOS": "15.0",
- "objc_name": "webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl",
- "Available"
+ "RawDocComment"
],
- "isFromExtension": true,
+ "reqNewWitnessTableEntry": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webView",
- "printedName": "webView(_:didFinish:)",
+ "name": "createEmbeddedView",
+ "printedName": "createEmbeddedView(presentUsing:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
},
{
"kind": "TypeNominal",
- "name": "ImplicitlyUnwrappedOptional",
- "printedName": "WebKit.WKNavigation?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "WKNavigation",
- "printedName": "WebKit.WKNavigation",
- "usr": "c:objc(cs)WKNavigation"
- }
- ],
- "usr": "s:Sq"
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:didFinishNavigation:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_9didFinishySo05WKWebI0C_So12WKNavigationCSgtF",
+ "usr": "s:7LinkKit7HandlerP18createEmbeddedView12presentUsingSo6UIViewCAA18PresentationMethodO_tF",
+ "mangledName": "$s7LinkKit7HandlerP18createEmbeddedView12presentUsingSo6UIViewCAA18PresentationMethodO_tF",
"moduleName": "LinkKit",
- "objc_name": "webView:didFinishNavigation:",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
+ "RawDocComment"
],
- "isFromExtension": true,
+ "reqNewWitnessTableEntry": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webView",
- "printedName": "webView(_:didCommit:)",
+ "name": "resumeAfterTermination",
+ "printedName": "resumeAfterTermination(from:)",
"children": [
{
"kind": "TypeNominal",
@@ -50449,326 +45604,462 @@
},
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- },
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit7HandlerP22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "mangledName": "$s7LinkKit7HandlerP22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit7HandlerP",
+ "mangledName": "$s7LinkKit7HandlerP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InvalidInputErrorCode",
+ "printedName": "InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "invalidApiKeys",
+ "printedName": "invalidApiKeys",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "ImplicitlyUnwrappedOptional",
- "printedName": "WebKit.WKNavigation?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "WKNavigation",
- "printedName": "WebKit.WKNavigation",
- "usr": "c:objc(cs)WKNavigation"
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:didCommitNavigation:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_9didCommitySo05WKWebI0C_So12WKNavigationCSgtF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO14invalidApiKeysyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO14invalidApiKeysyA2CmF",
"moduleName": "LinkKit",
- "objc_name": "webView:didCommitNavigation:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl",
"RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "webView",
- "printedName": "webView(_:decidePolicyFor:decisionHandler:)",
+ "kind": "Var",
+ "name": "unauthorizedEnvironment",
+ "printedName": "unauthorizedEnvironment",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- },
- {
- "kind": "TypeNominal",
- "name": "WKNavigationAction",
- "printedName": "WebKit.WKNavigationAction",
- "usr": "c:objc(cs)WKNavigationAction"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(WebKit.WKNavigationActionPolicy) -> ()",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "WKNavigationActionPolicy",
- "printedName": "WebKit.WKNavigationActionPolicy",
- "usr": "c:@E@WKNavigationActionPolicy"
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
}
]
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:decidePolicyForNavigationAction:decisionHandler:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_15decidePolicyFor15decisionHandlerySo05WKWebI0C_So18WKNavigationActionCySo0pqK0VctF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO23unauthorizedEnvironmentyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO23unauthorizedEnvironmentyA2CmF",
"moduleName": "LinkKit",
- "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "presentationAnchor",
- "printedName": "presentationAnchor(for:)",
+ "kind": "Var",
+ "name": "invalidAccessToken",
+ "printedName": "invalidAccessToken",
"children": [
{
- "kind": "TypeNominal",
- "name": "UIWindow",
- "printedName": "UIKit.UIWindow",
- "usr": "c:objc(cs)UIWindow"
- },
- {
- "kind": "TypeNominal",
- "name": "ASWebAuthenticationSession",
- "printedName": "AuthenticationServices.ASWebAuthenticationSession",
- "usr": "c:objc(cs)ASWebAuthenticationSession"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)presentationAnchorForWebAuthenticationSession:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidAccessTokenyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidAccessTokenyA2CmF",
"moduleName": "LinkKit",
- "objc_name": "presentationAnchorForWebAuthenticationSession:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "kind": "Var",
+ "name": "invalidPublicToken",
+ "printedName": "invalidPublicToken",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidPublicTokenyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidPublicTokenyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
+ "kind": "Var",
+ "name": "invalidProduct",
+ "printedName": "invalidProduct",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO14invalidProductyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO14invalidProductyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ "kind": "Var",
+ "name": "invalidAccountId",
+ "printedName": "invalidAccountId",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO16invalidAccountIdyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO16invalidAccountIdyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ "kind": "Var",
+ "name": "invalidInstitution",
+ "printedName": "invalidInstitution",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "kind": "Var",
+ "name": "tooManyVerificationAttempts",
+ "printedName": "tooManyVerificationAttempts",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO27tooManyVerificationAttemptsyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO27tooManyVerificationAttemptsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> (Swift.String) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "SafariServices",
- "printedName": "SafariServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "WebKit",
- "printedName": "WebKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AuthenticationServices",
- "printedName": "AuthenticationServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "EmbeddedSearchView",
- "printedName": "EmbeddedSearchView",
- "children": [
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(viewModel:handler:)",
+ "printedName": "init(string:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchView",
- "printedName": "LinkKit.EmbeddedSearchView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchView"
- },
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchViewModel",
- "printedName": "Workflow.EmbeddedSearchViewModel",
- "usr": "s:8Workflow23EmbeddedSearchViewModelC"
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit18EmbeddedSearchViewC9viewModel7handlerAC8Workflow0cdeG0C_AA7Handler_ptcfc",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC9viewModel7handlerAC8Workflow0cdeG0C_AA7Handler_ptcfc",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6stringACSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "RawDocComment"
+ "AccessControl"
],
"init_kind": "Designated"
},
{
"kind": "Var",
- "name": "handler",
- "printedName": "handler",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvp",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -50777,518 +46068,292 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvg",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvg",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchViewModel",
- "printedName": "Workflow.EmbeddedSearchViewModel",
- "usr": "s:8Workflow23EmbeddedSearchViewModelC"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC9viewModel33_56CDF6B379D3F8DEF2746A7281DF5920LL8Workflow0cdeG0Cvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC9viewModel33_56CDF6B379D3F8DEF2746A7281DF5920LL8Workflow0cdeG0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "webView",
- "printedName": "webView",
+ "name": "invalidApiKeysString",
+ "printedName": "invalidApiKeysString",
"children": [
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC03webE033_56CDF6B379D3F8DEF2746A7281DF5920LLSo05WKWebE0Cvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC03webE033_56CDF6B379D3F8DEF2746A7281DF5920LLSo05WKWebE0Cvp",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvpZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
"isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "embeddedSearchAndSelectView",
- "printedName": "embeddedSearchAndSelectView",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.EmbeddedSearchAndSelectView?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchAndSelectView",
- "printedName": "LinkKit.EmbeddedSearchAndSelectView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC08embeddedd9AndSelectE033_56CDF6B379D3F8DEF2746A7281DF5920LLAA0cdghE0CSgvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC08embeddedd9AndSelectE033_56CDF6B379D3F8DEF2746A7281DF5920LLAA0cdghE0CSgvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 3,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "activityIndicator",
- "printedName": "activityIndicator",
+ "name": "unauthorizedEnvironmentString",
+ "printedName": "unauthorizedEnvironmentString",
"children": [
{
"kind": "TypeNominal",
- "name": "PlaidActivityIndicator",
- "printedName": "Threads.PlaidActivityIndicator",
- "usr": "c:@M@Threads@objc(cs)PlaidActivityIndicator"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC17activityIndicator33_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads013PlaidActivityG0Cvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC17activityIndicator33_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads013PlaidActivityG0Cvp",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvpZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 4,
"isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "$__lazy_storage_$_errorView",
- "printedName": "$__lazy_storage_$_errorView",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Threads.ErrorView?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ErrorView",
- "printedName": "Threads.ErrorView",
- "usr": "c:@M@Threads@objc(cs)ErrorView"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC023$__lazy_storage_$_errorE033_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads05ErrorE0CSgvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC023$__lazy_storage_$_errorE033_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads05ErrorE0CSgvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
- ],
- "fixedbinaryorder": 5,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "presentedViewController",
- "printedName": "presentedViewController",
+ "name": "invalidAccessTokenString",
+ "printedName": "invalidAccessTokenString",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC09presentedE10Controller33_56CDF6B379D3F8DEF2746A7281DF5920LLSo06UIViewG0CSgvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC09presentedE10Controller33_56CDF6B379D3F8DEF2746A7281DF5920LLSo06UIViewG0CSgvp",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvpZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 6,
- "hasStorage": true
- },
- {
- "kind": "Function",
- "name": "webView",
- "printedName": "webView(_:decidePolicyFor:decisionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- },
- {
- "kind": "TypeNominal",
- "name": "WKNavigationAction",
- "printedName": "WebKit.WKNavigationAction",
- "usr": "c:objc(cs)WKNavigationAction"
- },
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(WebKit.WKNavigationActionPolicy) -> ()",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "WKNavigationActionPolicy",
- "printedName": "WebKit.WKNavigationActionPolicy",
- "usr": "c:@E@WKNavigationActionPolicy"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchView(im)webView:decidePolicyForNavigationAction:decisionHandler:",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC03webE0_15decidePolicyFor15decisionHandlerySo05WKWebE0C_So18WKNavigationActionCySo0mnH0VctF",
- "moduleName": "LinkKit",
- "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "stateUpdated",
- "printedName": "stateUpdated(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchState",
- "printedName": "Workflow.EmbeddedSearchState",
- "usr": "s:8Workflow19EmbeddedSearchStateO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit18EmbeddedSearchViewC12stateUpdated2toy8Workflow0cD5StateO_tF",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC12stateUpdated2toy8Workflow0cD5StateO_tF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(url:popupBehavior:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- },
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchPopupBehavior",
- "printedName": "Workflow.EmbeddedSearchPopupBehavior",
- "usr": "s:8Workflow27EmbeddedSearchPopupBehaviorO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit18EmbeddedSearchViewC4open3url13popupBehaviory10Foundation3URLV_8Workflow0cd5PopupI0OtF",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC4open3url13popupBehaviory10Foundation3URLV_8Workflow0cd5PopupI0OtF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Function",
- "name": "present",
- "printedName": "present(modal:)",
+ "kind": "Var",
+ "name": "invalidPublicTokenString",
+ "printedName": "invalidPublicTokenString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SDKModal",
- "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_SDKInternalEvent.SDKModal",
- "usr": "s:13WorkflowProto05Link_A29_Nodes_Panes_SDKInternalEventV8SDKModalV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18EmbeddedSearchViewC7present5modaly13WorkflowProto0a1_H29_Nodes_Panes_SDKInternalEventV8SDKModalV_tF",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC7present5modaly13WorkflowProto0a1_H29_Nodes_Panes_SDKInternalEventV8SDKModalV_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "Custom",
- "Final"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Function",
- "name": "hideModal",
- "printedName": "hideModal(hide:)",
+ "kind": "Var",
+ "name": "invalidProductString",
+ "printedName": "invalidProductString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18EmbeddedSearchViewC9hideModal0F0ySb_tF",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC9hideModal0F0ySb_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "Custom",
- "Final"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchView",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "EmbeddedSearchViewModelDelegate",
- "printedName": "EmbeddedSearchViewModelDelegate",
- "usr": "s:8Workflow31EmbeddedSearchViewModelDelegateP",
- "mangledName": "$s8Workflow31EmbeddedSearchViewModelDelegateP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
- {
- "kind": "Conformance",
- "name": "LayoutArea",
- "printedName": "LayoutArea",
- "usr": "s:9AppCoreUI10LayoutAreaP",
- "mangledName": "$s9AppCoreUI10LayoutAreaP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "FlutterLinkKit",
- "printedName": "FlutterLinkKit",
- "children": [
{
"kind": "Var",
- "name": "isRunningFlutter",
- "printedName": "isRunningFlutter",
+ "name": "invalidAccountIdString",
+ "printedName": "invalidAccountIdString",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvpZ",
- "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvpZ",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -51298,14 +46363,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvgZ",
- "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvgZ",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -51313,146 +46378,187 @@
"Transparent"
],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidInstitutionString",
+ "printedName": "invalidInstitutionString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvsZ",
- "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvsZ",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
- "accessorKind": "set"
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "tooManyVerificationAttemptsString",
+ "printedName": "tooManyVerificationAttemptsString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvMZ",
- "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvMZ",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "FlutterLinkKit",
- "printedName": "LinkKit.FlutterLinkKit",
- "usr": "s:7LinkKit07FlutteraB0V"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKInvalidInputErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKInvalidInputErrorCode",
+ "printedName": "LinkKit.PLKInvalidInputErrorCode",
+ "usr": "c:@E@PLKInvalidInputErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit07FlutteraB0VACycfc",
- "mangledName": "$s7LinkKit07FlutteraB0VACycfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit07FlutteraB0V",
- "mangledName": "$s7LinkKit07FlutteraB0V",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "RoutingNumberValidator",
- "printedName": "RoutingNumberValidator",
- "children": [
- {
- "kind": "Function",
- "name": "isValid",
- "printedName": "isValid(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKInvalidInputErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKInvalidInputErrorCode",
+ "printedName": "LinkKit.PLKInvalidInputErrorCode",
+ "usr": "c:@E@PLKInvalidInputErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit22RoutingNumberValidatorO7isValidySbSSFZ",
- "mangledName": "$s7LinkKit22RoutingNumberValidatorO7isValidySbSSFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ ]
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit22RoutingNumberValidatorO",
- "mangledName": "$s7LinkKit22RoutingNumberValidatorO",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
],
- "isEnumExhaustive": true,
"conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
{
"kind": "Conformance",
"name": "Sendable",
@@ -51765,12 +46871,44 @@
"moduleName": "Foundation",
"intro_Macosx": "10.8",
"intro_iOS": "6.0",
+ "intro_tvOS": "9.0",
+ "intro_watchOS": "2.0",
"declAttributes": [
+ "Available",
+ "Available",
"Available",
"Available"
],
"isExternal": true,
"conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
{
"kind": "Conformance",
"name": "ReferenceConvertible",
@@ -51793,27 +46931,6 @@
"usr": "s:10Foundation20ReferenceConvertibleP",
"mangledName": "$s10Foundation20ReferenceConvertibleP"
},
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
{
"kind": "Conformance",
"name": "CustomDebugStringConvertible",
@@ -51821,13 +46938,6 @@
"usr": "s:s28CustomDebugStringConvertibleP",
"mangledName": "$ss28CustomDebugStringConvertibleP"
},
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
{
"kind": "Conformance",
"name": "_ObjectiveCBridgeable",
@@ -51850,6 +46960,13 @@
"usr": "s:s21_ObjectiveCBridgeableP",
"mangledName": "$ss21_ObjectiveCBridgeableP"
},
+ {
+ "kind": "Conformance",
+ "name": "CustomReflectable",
+ "printedName": "CustomReflectable",
+ "usr": "s:s17CustomReflectableP",
+ "mangledName": "$ss17CustomReflectableP"
+ },
{
"kind": "Conformance",
"name": "Decodable",
@@ -51863,6 +46980,13 @@
"printedName": "Encodable",
"usr": "s:SE",
"mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
}
]
},
@@ -51941,7 +47065,7 @@
{
"kind": "TypeNominal",
"name": "CGSize",
- "printedName": "CoreGraphics.CGSize",
+ "printedName": "CoreFoundation.CGSize",
"usr": "c:@S@CGSize"
}
],
@@ -52097,13 +47221,13 @@
{
"kind": "TypeNominal",
"name": "CGSize",
- "printedName": "CoreGraphics.CGSize",
+ "printedName": "CoreFoundation.CGSize",
"usr": "c:@S@CGSize"
},
{
"kind": "TypeNominal",
"name": "CGSize",
- "printedName": "CoreGraphics.CGSize",
+ "printedName": "CoreFoundation.CGSize",
"usr": "c:@S@CGSize"
}
],
@@ -53203,7 +48327,11 @@
"moduleName": "Foundation",
"intro_Macosx": "10.10",
"intro_iOS": "8.0",
+ "intro_tvOS": "9.0",
+ "intro_watchOS": "2.0",
"declAttributes": [
+ "Available",
+ "Available",
"Available",
"Available"
],
@@ -53245,6 +48373,13 @@
"usr": "s:SQ",
"mangledName": "$sSQ"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
{
"kind": "Conformance",
"name": "CustomStringConvertible",
@@ -53380,13 +48515,6 @@
"moduleName": "WorkflowProto",
"isExternal": true,
"conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
{
"kind": "Conformance",
"name": "Message",
@@ -53428,6 +48556,13 @@
"printedName": "Equatable",
"usr": "s:SQ",
"mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
@@ -53482,13 +48617,6 @@
"moduleName": "WorkflowProto",
"isExternal": true,
"conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
{
"kind": "Conformance",
"name": "Message",
@@ -53530,6 +48658,13 @@
"printedName": "Equatable",
"usr": "s:SQ",
"mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
@@ -53585,41 +48720,6 @@
"static": true,
"isFromExtension": true,
"funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "asAccountFilter",
- "printedName": "asAccountFilter()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : WorkflowProto.Link_Workflow_Primitives_LinkConfiguration.RepeatedAccountSubtype]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "RepeatedAccountSubtype",
- "printedName": "WorkflowProto.Link_Workflow_Primitives_LinkConfiguration.RepeatedAccountSubtype",
- "usr": "s:13WorkflowProto05Link_a12_Primitives_C13ConfigurationV22RepeatedAccountSubtypeV"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "s:Sa7LinkKitAA14AccountSubtypeORszlE02asC6FilterSDySS13WorkflowProto0a1_g12_Primitives_A13ConfigurationV08RepeatedcD0VGyF",
- "mangledName": "$sSa7LinkKitAA14AccountSubtypeORszlE02asC6FilterSDySS13WorkflowProto0a1_g12_Primitives_A13ConfigurationV08RepeatedcD0VGyF",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 == LinkKit.AccountSubtype>",
- "sugared_genericSig": "",
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
}
],
"declKind": "Struct",
@@ -54152,6 +49252,42 @@
"usr": "s:s19_HasContiguousBytesP",
"mangledName": "$ss19_HasContiguousBytesP"
},
+ {
+ "kind": "Conformance",
+ "name": "_ObjectiveCBridgeable",
+ "printedName": "_ObjectiveCBridgeable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_ObjectiveCType",
+ "printedName": "_ObjectiveCType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSArray",
+ "printedName": "Foundation.NSArray",
+ "usr": "c:objc(cs)NSArray"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s21_ObjectiveCBridgeableP",
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "ContiguousBytes",
+ "printedName": "ContiguousBytes",
+ "usr": "s:10Foundation15ContiguousBytesP",
+ "mangledName": "$s10Foundation15ContiguousBytesP"
+ },
{
"kind": "Conformance",
"name": "EncodableWithConfiguration",
@@ -54238,42 +49374,6 @@
"printedName": "MutableDataProtocol",
"usr": "s:10Foundation19MutableDataProtocolP",
"mangledName": "$s10Foundation19MutableDataProtocolP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSArray",
- "printedName": "Foundation.NSArray",
- "usr": "c:objc(cs)NSArray"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "ContiguousBytes",
- "printedName": "ContiguousBytes",
- "usr": "s:10Foundation15ContiguousBytesP",
- "mangledName": "$s10Foundation15ContiguousBytesP"
}
]
},
@@ -54468,127 +49568,154 @@
],
"usr": "s:10Foundation26DecodableWithConfigurationP",
"mangledName": "$s10Foundation26DecodableWithConfigurationP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PLKLinkTokenConfiguration",
- "printedName": "PLKLinkTokenConfiguration",
- "children": [
+ },
{
- "kind": "Var",
- "name": "toSwift",
- "printedName": "toSwift",
+ "kind": "Conformance",
+ "name": "Gesture",
+ "printedName": "Gesture",
"children": [
{
- "kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
- }
- ],
- "declKind": "Var",
- "usr": "s:So25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvp",
- "mangledName": "$sSo25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvp",
- "moduleName": "LinkKit",
- "isOpen": true,
- "isFromExtension": true,
- "accessors": [
+ "kind": "TypeWitness",
+ "name": "Value",
+ "printedName": "Value",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DependentMember",
+ "printedName": "τ_0_0.Value"
+ }
+ ]
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeWitness",
+ "name": "Body",
+ "printedName": "Body",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:So25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvg",
- "mangledName": "$sSo25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvg",
- "moduleName": "LinkKit",
- "isOpen": true,
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)PLKLinkTokenConfiguration",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "PLKLinkTokenConfiguration",
- "declAttributes": [
- "ObjC",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ ],
+ "usr": "s:7SwiftUI7GestureP",
+ "mangledName": "$s7SwiftUI7GestureP"
},
{
"kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
+ "name": "View",
+ "printedName": "View",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "Body",
+ "printedName": "Body",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:7SwiftUI4ViewP",
+ "mangledName": "$s7SwiftUI4ViewP"
},
{
"kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ "name": "TableRowContent",
+ "printedName": "TableRowContent",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "TableRowValue",
+ "printedName": "TableRowValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DependentMember",
+ "printedName": "τ_0_0.TableRowValue"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "TableRowBody",
+ "printedName": "TableRowBody",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:7SwiftUI15TableRowContentP",
+ "mangledName": "$s7SwiftUI15TableRowContentP"
},
{
"kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ "name": "Commands",
+ "printedName": "Commands",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "Body",
+ "printedName": "Body",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:7SwiftUI8CommandsP",
+ "mangledName": "$s7SwiftUI8CommandsP"
},
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "ToolbarContent",
+ "printedName": "ToolbarContent",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "Body",
+ "printedName": "Body",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:7SwiftUI14ToolbarContentP",
+ "mangledName": "$s7SwiftUI14ToolbarContentP"
},
{
"kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "CustomizableToolbarContent",
+ "printedName": "CustomizableToolbarContent",
+ "usr": "s:7SwiftUI26CustomizableToolbarContentP",
+ "mangledName": "$s7SwiftUI26CustomizableToolbarContentP"
}
]
},
{
"kind": "TypeDecl",
- "name": "PLKOAuthNonceConfiguration",
- "printedName": "PLKOAuthNonceConfiguration",
+ "name": "PLKLinkTokenConfiguration",
+ "printedName": "PLKLinkTokenConfiguration",
"children": [
{
"kind": "Var",
@@ -54597,14 +49724,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
}
],
"declKind": "Var",
- "usr": "s:So26PLKOAuthNonceConfigurationC7LinkKitE7toSwiftAC05OAuthbC0Vvp",
- "mangledName": "$sSo26PLKOAuthNonceConfigurationC7LinkKitE7toSwiftAC05OAuthbC0Vvp",
+ "usr": "s:So25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvp",
+ "mangledName": "$sSo25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvp",
"moduleName": "LinkKit",
"isOpen": true,
"isFromExtension": true,
@@ -54616,14 +49743,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
}
],
"declKind": "Accessor",
- "usr": "s:So26PLKOAuthNonceConfigurationC7LinkKitE7toSwiftAC05OAuthbC0Vvg",
- "mangledName": "$sSo26PLKOAuthNonceConfigurationC7LinkKitE7toSwiftAC05OAuthbC0Vvg",
+ "usr": "s:So25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvg",
+ "mangledName": "$sSo25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvg",
"moduleName": "LinkKit",
"isOpen": true,
"isFromExtension": true,
@@ -54633,10 +49760,10 @@
}
],
"declKind": "Class",
- "usr": "c:objc(cs)PLKOAuthNonceConfiguration",
+ "usr": "c:objc(cs)PLKLinkTokenConfiguration",
"moduleName": "LinkKit",
"isOpen": true,
- "objc_name": "PLKOAuthNonceConfiguration",
+ "objc_name": "PLKLinkTokenConfiguration",
"declAttributes": [
"ObjC",
"Dynamic"
@@ -54818,2525 +49945,4357 @@
"mangledName": "$sSH"
}
]
- },
- {
- "kind": "TypeDecl",
- "name": "PLKLinkPublicKeyConfiguration",
- "printedName": "PLKLinkPublicKeyConfiguration",
- "children": [
- {
- "kind": "Var",
- "name": "toSwift",
- "printedName": "toSwift",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ],
- "declKind": "Var",
- "usr": "s:So29PLKLinkPublicKeyConfigurationC7LinkKitE7toSwifts6ResultOyAC0ebcD0VSo7NSErrorCGvp",
- "mangledName": "$sSo29PLKLinkPublicKeyConfigurationC7LinkKitE7toSwifts6ResultOyAC0ebcD0VSo7NSErrorCGvp",
- "moduleName": "LinkKit",
- "isOpen": true,
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So29PLKLinkPublicKeyConfigurationC7LinkKitE7toSwifts6ResultOyAC0ebcD0VSo7NSErrorCGvg",
- "mangledName": "$sSo29PLKLinkPublicKeyConfigurationC7LinkKitE7toSwifts6ResultOyAC0ebcD0VSo7NSErrorCGvg",
- "moduleName": "LinkKit",
- "isOpen": true,
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)PLKLinkPublicKeyConfiguration",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "PLKLinkPublicKeyConfiguration",
- "declAttributes": [
- "ObjC",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- }
- ]
}
],
"json_format_version": 8
},
"ConstValues": [
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/PresentationMethod.swift",
+ "kind": "BooleanLiteral",
+ "offset": 523,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2763,
+ "length": 17,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2771,
+ "length": 1,
+ "value": "\".\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2779,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5662,
+ "length": 6,
+ "value": "\"type\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5694,
+ "length": 6,
+ "value": "\"code\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5662,
+ "length": 6,
+ "value": "\"type\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5694,
+ "length": 6,
+ "value": "\"code\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5755,
+ "length": 17,
+ "value": "\"INVALID_REQUEST\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5818,
+ "length": 15,
+ "value": "\"INVALID_INPUT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5883,
+ "length": 19,
+ "value": "\"INSTITUTION_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5953,
+ "length": 21,
+ "value": "\"RATE_LIMIT_EXCEEDED\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6016,
+ "length": 11,
+ "value": "\"API_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6070,
+ "length": 12,
+ "value": "\"ITEM_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6125,
+ "length": 12,
+ "value": "\"AUTH_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6187,
+ "length": 20,
+ "value": "\"ASSET_REPORT_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6249,
+ "length": 10,
+ "value": "\"INTERNAL\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 11798,
+ "length": 32,
+ "value": "\"BANK_INCOME_INSIGHTS_COMPLETED\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 11873,
+ "length": 13,
+ "value": "\"CLOSE_OAUTH\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 11924,
+ "length": 7,
+ "value": "\"ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 11968,
+ "length": 6,
+ "value": "\"EXIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12016,
+ "length": 12,
+ "value": "\"FAIL_OAUTH\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12068,
+ "length": 9,
+ "value": "\"HANDOFF\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12139,
+ "length": 34,
+ "value": "\"IDENTITY_VERIFICATION_START_STEP\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12234,
+ "length": 33,
+ "value": "\"IDENTITY_VERIFICATION_PASS_STEP\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12328,
+ "length": 33,
+ "value": "\"IDENTITY_VERIFICATION_FAIL_STEP\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12431,
+ "length": 43,
+ "value": "\"IDENTITY_VERIFICATION_PENDING_REVIEW_STEP\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12547,
+ "length": 46,
+ "value": "\"IDENTITY_VERIFICATION_PENDING_REVIEW_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12659,
+ "length": 38,
+ "value": "\"IDENTITY_VERIFICATION_CREATE_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12763,
+ "length": 38,
+ "value": "\"IDENTITY_VERIFICATION_RESUME_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12865,
+ "length": 36,
+ "value": "\"IDENTITY_VERIFICATION_PASS_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12965,
+ "length": 36,
+ "value": "\"IDENTITY_VERIFICATION_FAIL_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13060,
+ "length": 31,
+ "value": "\"IDENTITY_VERIFICATION_OPEN_UI\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13152,
+ "length": 33,
+ "value": "\"IDENTITY_VERIFICATION_RESUME_UI\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13245,
+ "length": 32,
+ "value": "\"IDENTITY_VERIFICATION_CLOSE_UI\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13334,
+ "length": 28,
+ "value": "\"MATCHED_SELECT_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13420,
+ "length": 30,
+ "value": "\"MATCHED_SELECT_VERIFY_METHOD\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13487,
+ "length": 6,
+ "value": "\"OPEN\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13537,
+ "length": 15,
+ "value": "\"OPEN_MY_PLAID\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13594,
+ "length": 12,
+ "value": "\"OPEN_OAUTH\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13656,
+ "length": 20,
+ "value": "\"SEARCH_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13734,
+ "length": 29,
+ "value": "\"SELECT_DEGRADED_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13817,
+ "length": 25,
+ "value": "\"SELECT_DOWN_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13900,
+ "length": 29,
+ "value": "\"SELECT_FILTERED_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13979,
+ "length": 20,
+ "value": "\"SELECT_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14043,
+ "length": 14,
+ "value": "\"SELECT_BRAND\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14104,
+ "length": 18,
+ "value": "\"SELECT_AUTH_TYPE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14174,
+ "length": 23,
+ "value": "\"SUBMIT_ACCOUNT_NUMBER\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14245,
+ "length": 18,
+ "value": "\"SUBMIT_DOCUMENTS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14318,
+ "length": 26,
+ "value": "\"SUBMIT_DOCUMENTS_SUCCESS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14397,
+ "length": 24,
+ "value": "\"SUBMIT_DOCUMENTS_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14473,
+ "length": 23,
+ "value": "\"SUBMIT_ROUTING_NUMBER\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14542,
+ "length": 17,
+ "value": "\"VIEW_DATA_TYPES\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14603,
+ "length": 14,
+ "value": "\"SUBMIT_PHONE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14665,
+ "length": 19,
+ "value": "\"SKIP_SUBMIT_PHONE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14728,
+ "length": 14,
+ "value": "\"VERIFY_PHONE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14792,
+ "length": 20,
+ "value": "\"SUBMIT_CREDENTIALS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14854,
+ "length": 12,
+ "value": "\"SUBMIT_MFA\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14913,
+ "length": 17,
+ "value": "\"TRANSITION_VIEW\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14984,
+ "length": 25,
+ "value": "\"CONNECT_NEW_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 778,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1342,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 1791,
+ "length": 52,
+ "value": "\"Transitioning from \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 1822,
+ "length": 2,
+ "value": "\" to \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 1837,
+ "length": 4,
+ "value": "\" pane\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1870,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2110,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2982,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
"kind": "StringLiteral",
"offset": 329,
"length": 23,
"value": "\"LinkKit.PlaidLinkViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/SearchAndSelectViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AccountSubtype.swift",
+ "kind": "StringLiteral",
+ "offset": 2593,
+ "length": 24,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AccountSubtype.swift",
+ "kind": "StringLiteral",
+ "offset": 2601,
+ "length": 1,
+ "value": "\".\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AccountSubtype.swift",
+ "kind": "StringLiteral",
+ "offset": 2616,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 764,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 1061,
+ "length": 36,
+ "value": "\"Can transition on the Main Thread.\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 1993,
+ "offset": 1275,
"length": 12,
- "value": "\"selectCell\""
+ "value": "\"layoutView\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/SearchAndSelectViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 72,
- "length": 29,
- "value": "\"LinkKit.SearchAndSelectViewController\""
+ "offset": 2436,
+ "length": 14,
+ "value": "\"PushOutgoing\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/SearchAndSelectViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "Array",
+ "offset": 2516,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 72,
- "length": 29,
- "value": "\"LinkKit.SearchAndSelectViewController\""
+ "offset": 2800,
+ "length": 14,
+ "value": "\"PushIncoming\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 3208,
+ "length": 13,
+ "value": "\"PopOutgoing\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "Array",
+ "offset": 3287,
+ "length": 2,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 3572,
+ "length": 13,
+ "value": "\"PopIncoming\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "Array",
"offset": 4967,
"length": 2,
"value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5152,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5205,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5214,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5225,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5235,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5622,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5838,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6001,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 6806,
+ "length": 15,
+ "value": "\"scrollContent\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 7026,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7371,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 7568,
+ "length": 23,
+ "value": "\"fixedFooterScrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7659,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 7934,
+ "length": 26,
+ "value": "\"fixedFooterScrollContent\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8031,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 8388,
+ "length": 28,
+ "value": "\"fixedFooterFooterContainer\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8489,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 8907,
+ "length": 12,
+ "value": "\"navigation\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9040,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9225,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9409,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9642,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9735,
+ "length": 25,
+ "value": "\"scrollContent2container\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9962,
+ "length": 26,
+ "value": "\"scrollContent2scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 10110,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 10315,
+ "length": 17,
+ "value": "\"footerContainer\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10586,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 10689,
+ "length": 25,
+ "value": "\"footerComponentSafeArea\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "StringLiteral",
"offset": 494,
"length": 27,
"value": "\"LinkKit.ComponentPaneViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 467,
+ "length": 13,
+ "value": "\"Invalid URL\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 519,
+ "length": 14,
+ "value": "\"Missing data\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 578,
+ "length": 24,
+ "value": "\"API Error: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 601,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 657,
+ "length": 34,
+ "value": "\"Decoding Error: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 690,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 866,
+ "length": 60,
+ "value": "\"https:\/\/api.github.com\/repos\/plaid\/plaid-link-ios\/releases\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "Dictionary",
+ "offset": 589,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 735,
+ "length": 7,
+ "value": "\"Error\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 753,
+ "length": 18,
+ "value": "\"Alert view title\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 838,
+ "length": 83,
+ "value": "\"Your device is not configured to send mail.\nOpen Settings to add a mail account.\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 952,
+ "length": 20,
+ "value": "\"Alert view message\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 1034,
+ "length": 10,
+ "value": "\"Settings\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 1055,
+ "length": 54,
+ "value": "\"Open the device settings from alert with this button\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1235,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 1947,
+ "length": 4,
+ "value": "\"OK\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 1962,
+ "length": 26,
+ "value": "\"Acknowledge alert button\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2090,
+ "length": 16,
+ "value": "\"ACCOUNTS_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2153,
+ "length": 16,
+ "value": "\"ADDITION_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2212,
+ "length": 12,
+ "value": "\"AUTH_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2271,
+ "length": 16,
+ "value": "\"IDENTITY_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2332,
+ "length": 14,
+ "value": "\"INCOME_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2392,
+ "length": 16,
+ "value": "\"ITEM_GET_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2451,
+ "length": 12,
+ "value": "\"RATE_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2514,
+ "length": 20,
+ "value": "\"TRANSACTIONS_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "StringLiteral",
+ "offset": 233,
+ "length": 3,
+ "value": "\".\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 295,
+ "length": 1,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 622,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 739,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 755,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 785,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 902,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 918,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 948,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1728,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "StringLiteral",
+ "offset": 871,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
"kind": "IntegerLiteral",
"offset": 1333,
"length": 2,
"value": "16"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
"kind": "IntegerLiteral",
"offset": 1345,
"length": 2,
"value": "16"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
- "kind": "IntegerLiteral",
- "offset": 1735,
- "length": 2,
- "value": "54"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1735,
+ "length": 2,
+ "value": "54"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1747,
+ "length": 2,
+ "value": "20"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2190,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2251,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3779,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4505,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "StringLiteral",
+ "offset": 271,
+ "length": 24,
+ "value": "\"LinkKit.EmbeddedSearchModuleView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ApiErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 1078,
+ "length": 23,
+ "value": "\"INTERNAL_SERVER_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ApiErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 1153,
+ "length": 21,
+ "value": "\"PLANNED_MAINTENANCE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "IntegerLiteral",
+ "offset": 576,
+ "length": 2,
+ "value": "15"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "IntegerLiteral",
+ "offset": 608,
+ "length": 1,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "IntegerLiteral",
+ "offset": 687,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "StringLiteral",
+ "offset": 2119,
+ "length": 66,
+ "value": "\"Returning \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "StringLiteral",
+ "offset": 2152,
+ "length": 3,
+ "value": "\" for view model \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "StringLiteral",
+ "offset": 2184,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2824,
+ "length": 20,
+ "value": "\"requires_questions\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2895,
+ "length": 21,
+ "value": "\"requires_selections\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2961,
+ "length": 15,
+ "value": "\"requires_code\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3021,
+ "length": 15,
+ "value": "\"choose_device\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3088,
+ "length": 22,
+ "value": "\"requires_credentials\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3162,
+ "length": 23,
+ "value": "\"institution_not_found\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3242,
+ "length": 28,
+ "value": "\"requires_account_selection\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3323,
+ "length": 25,
+ "value": "\"continue_to_third_party\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Plaid.swift",
+ "kind": "StringLiteral",
+ "offset": 1086,
+ "length": 112,
+ "value": "\"linkTokenConfiguration.token: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Plaid.swift",
+ "kind": "StringLiteral",
+ "offset": 1148,
+ "length": 2,
+ "value": "\" is invalid, it must contain an environment name.\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Plaid.swift",
+ "kind": "StringLiteral",
+ "offset": 1723,
+ "length": 16,
+ "value": "\"com.plaid.link\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AuthErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 1019,
+ "length": 19,
+ "value": "\"PRODUCT_NOT_READY\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AuthErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 1091,
+ "length": 22,
+ "value": "\"VERIFICATION_EXPIRED\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 373,
+ "length": 10,
+ "value": "\"html_url\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 407,
+ "length": 10,
+ "value": "\"tag_name\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 482,
+ "length": 14,
+ "value": "\"published_at\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 373,
+ "length": 10,
+ "value": "\"html_url\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 407,
+ "length": 10,
+ "value": "\"tag_name\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 482,
+ "length": 14,
+ "value": "\"published_at\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
"kind": "IntegerLiteral",
- "offset": 1747,
+ "offset": 995,
"length": 2,
- "value": "20"
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
- "kind": "StringLiteral",
- "offset": 271,
- "length": 24,
- "value": "\"LinkKit.EmbeddedSearchModuleView\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1007,
+ "length": 2,
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
"kind": "BooleanLiteral",
- "offset": 9276,
- "length": 5,
- "value": "false"
+ "offset": 2052,
+ "length": 4,
+ "value": "true"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "Array",
- "offset": 15565,
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2636,
"length": 2,
- "value": "[]"
+ "value": "24"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 25183,
- "length": 12,
- "value": "\"event_name\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2648,
+ "length": 2,
+ "value": "24"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 25183,
- "length": 12,
- "value": "\"event_name\""
+ "offset": 3440,
+ "length": 16,
+ "value": "\"Primary button\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29672,
- "length": 8,
- "value": "\"assets\""
+ "offset": 595,
+ "length": 30,
+ "value": "\"https:\/\/production.plaid.com\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29718,
- "length": 6,
- "value": "\"auth\""
+ "offset": 686,
+ "length": 31,
+ "value": "\"https:\/\/development.plaid.com\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29771,
- "length": 16,
- "value": "\"deposit_switch\""
+ "offset": 774,
+ "length": 27,
+ "value": "\"https:\/\/sandbox.plaid.com\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29829,
- "length": 10,
- "value": "\"identity\""
+ "offset": 1012,
+ "length": 12,
+ "value": "\"production\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29879,
- "length": 8,
- "value": "\"income\""
+ "offset": 1071,
+ "length": 13,
+ "value": "\"development\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29932,
- "length": 13,
- "value": "\"investments\""
+ "offset": 1127,
+ "length": 9,
+ "value": "\"sandbox\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 29990,
- "length": 13,
- "value": "\"liabilities\""
+ "offset": 304,
+ "length": 7,
+ "value": "\"Plaid\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 30054,
- "length": 20,
- "value": "\"liabilities_report\""
+ "offset": 342,
+ "length": 9,
+ "value": "\"LinkKit\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 30125,
+ "offset": 510,
"length": 20,
- "value": "\"payment_initiation\""
+ "value": "\"ReactNativeLinkSdk\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 30191,
- "length": 14,
- "value": "\"transactions\""
+ "offset": 830,
+ "length": 8,
+ "value": "\"%@\/%@ \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 32362,
- "length": 32,
- "value": "\"pending_automatic_verification\""
+ "offset": 989,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 32452,
+ "offset": 1045,
"length": 29,
- "value": "\"pending_manual_verification\""
+ "value": "\"%@%@%@\/%@(%@) %@-%@ (%@ %@)\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 32530,
- "length": 19,
- "value": "\"manually_verified\""
+ "offset": 1293,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 32589,
- "length": 9,
- "value": "\"unknown\""
+ "offset": 1357,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37682,
- "length": 20,
- "value": "\"requires_questions\""
+ "offset": 826,
+ "length": 56,
+ "value": "\"Failed to decode MFAType from rawValue: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37753,
- "length": 21,
- "value": "\"requires_selections\""
+ "offset": 881,
+ "length": 1,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37819,
- "length": 15,
- "value": "\"requires_code\""
+ "offset": 1762,
+ "length": 6,
+ "value": "\"code\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37879,
- "length": 15,
- "value": "\"choose_device\""
+ "offset": 1808,
+ "length": 8,
+ "value": "\"device\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37946,
- "length": 22,
- "value": "\"requires_credentials\""
+ "offset": 1859,
+ "length": 11,
+ "value": "\"questions\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 38020,
- "length": 23,
- "value": "\"institution_not_found\""
+ "offset": 1914,
+ "length": 12,
+ "value": "\"selections\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
"kind": "StringLiteral",
- "offset": 38100,
- "length": 28,
- "value": "\"requires_account_selection\""
+ "offset": 407,
+ "length": 39,
+ "value": "\"init(frame:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
"kind": "StringLiteral",
- "offset": 38181,
- "length": 25,
- "value": "\"continue_to_third_party\""
+ "offset": 542,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 51838,
- "length": 32,
- "value": "\"BANK_INCOME_INSIGHTS_COMPLETED\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 706,
+ "length": 3,
+ "value": "118"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 51913,
- "length": 13,
- "value": "\"CLOSE_OAUTH\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 712,
+ "length": 3,
+ "value": "255"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 51964,
- "length": 7,
- "value": "\"ERROR\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 724,
+ "length": 3,
+ "value": "118"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52008,
- "length": 6,
- "value": "\"EXIT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 730,
+ "length": 3,
+ "value": "255"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52056,
- "length": 12,
- "value": "\"FAIL_OAUTH\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 741,
+ "length": 3,
+ "value": "118"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52108,
- "length": 9,
- "value": "\"HANDOFF\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 747,
+ "length": 3,
+ "value": "255"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52179,
- "length": 34,
- "value": "\"IDENTITY_VERIFICATION_START_STEP\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 759,
+ "length": 4,
+ "value": "0.20"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52274,
- "length": 33,
- "value": "\"IDENTITY_VERIFICATION_PASS_STEP\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 798,
+ "length": 1,
+ "value": "3"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52368,
- "length": 33,
- "value": "\"IDENTITY_VERIFICATION_FAIL_STEP\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 835,
+ "length": 3,
+ "value": "8.0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52471,
- "length": 43,
- "value": "\"IDENTITY_VERIFICATION_PENDING_REVIEW_STEP\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1385,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52587,
- "length": 46,
- "value": "\"IDENTITY_VERIFICATION_PENDING_REVIEW_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1480,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52699,
- "length": 38,
- "value": "\"IDENTITY_VERIFICATION_CREATE_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2805,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52803,
- "length": 38,
- "value": "\"IDENTITY_VERIFICATION_RESUME_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3196,
+ "length": 4,
+ "value": "0.49"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52905,
- "length": 36,
- "value": "\"IDENTITY_VERIFICATION_PASS_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3350,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53005,
- "length": 36,
- "value": "\"IDENTITY_VERIFICATION_FAIL_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3457,
+ "length": 1,
+ "value": "4"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53100,
- "length": 31,
- "value": "\"IDENTITY_VERIFICATION_OPEN_UI\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3525,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53192,
- "length": 33,
- "value": "\"IDENTITY_VERIFICATION_RESUME_UI\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3699,
+ "length": 2,
+ "value": "12"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53285,
- "length": 32,
- "value": "\"IDENTITY_VERIFICATION_CLOSE_UI\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3955,
+ "length": 2,
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53374,
- "length": 28,
- "value": "\"MATCHED_SELECT_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4114,
+ "length": 1,
+ "value": "4"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53460,
- "length": 30,
- "value": "\"MATCHED_SELECT_VERIFY_METHOD\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4184,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53527,
- "length": 6,
- "value": "\"OPEN\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4361,
+ "length": 2,
+ "value": "12"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53577,
- "length": 15,
- "value": "\"OPEN_MY_PLAID\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4621,
+ "length": 2,
+ "value": "32"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53634,
- "length": 12,
- "value": "\"OPEN_OAUTH\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4777,
+ "length": 1,
+ "value": "4"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53696,
- "length": 20,
- "value": "\"SEARCH_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4846,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53774,
- "length": 29,
- "value": "\"SELECT_DEGRADED_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5023,
+ "length": 2,
+ "value": "12"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53857,
- "length": 25,
- "value": "\"SELECT_DOWN_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5310,
+ "length": 3,
+ "value": "-32"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53940,
- "length": 29,
- "value": "\"SELECT_FILTERED_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5384,
+ "length": 2,
+ "value": "32"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54019,
- "length": 20,
- "value": "\"SELECT_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5880,
+ "length": 3,
+ "value": "0.2"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54083,
- "length": 14,
- "value": "\"SELECT_BRAND\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5978,
+ "length": 4,
+ "value": "0.95"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54144,
- "length": 18,
- "value": "\"SELECT_AUTH_TYPE\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5987,
+ "length": 4,
+ "value": "0.95"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54214,
- "length": 23,
- "value": "\"SUBMIT_ACCOUNT_NUMBER\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 6220,
+ "length": 3,
+ "value": "0.2"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54285,
- "length": 18,
- "value": "\"SUBMIT_DOCUMENTS\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7959,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54358,
- "length": 26,
- "value": "\"SUBMIT_DOCUMENTS_SUCCESS\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8144,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 54437,
- "length": 24,
- "value": "\"SUBMIT_DOCUMENTS_ERROR\""
+ "offset": 823,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54513,
- "length": 23,
- "value": "\"SUBMIT_ROUTING_NUMBER\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1390,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54582,
- "length": 17,
- "value": "\"VIEW_DATA_TYPES\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1664,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 54643,
- "length": 14,
- "value": "\"SUBMIT_PHONE\""
+ "offset": 356,
+ "length": 22,
+ "value": "\"LinkKit.TodoPaneViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
"kind": "StringLiteral",
- "offset": 54705,
- "length": 19,
- "value": "\"SKIP_SUBMIT_PHONE\""
+ "offset": 376,
+ "length": 11,
+ "value": "\"RNLinksdk\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
"kind": "StringLiteral",
- "offset": 54768,
- "length": 14,
- "value": "\"VERIFY_PHONE\""
+ "offset": 536,
+ "length": 12,
+ "value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
"kind": "StringLiteral",
- "offset": 54832,
- "length": 20,
- "value": "\"SUBMIT_CREDENTIALS\""
+ "offset": 965,
+ "length": 15,
+ "value": "\"0.0.0-unknown\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54894,
- "length": 12,
- "value": "\"SUBMIT_MFA\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "Dictionary",
+ "offset": 483,
+ "length": 3,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54953,
- "length": 17,
- "value": "\"TRANSITION_VIEW\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2661,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 55024,
- "length": 25,
- "value": "\"CONNECT_NEW_INSTITUTION\""
+ "offset": 3050,
+ "length": 31,
+ "value": "\"The input has to be a number.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 62943,
- "length": 12,
- "value": "\"ACCEPT_TOS\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3142,
+ "length": 1,
+ "value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 62997,
- "length": 11,
- "value": "\"CONNECTED\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3189,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63048,
- "length": 9,
- "value": "\"CONSENT\""
+ "offset": 3337,
+ "length": 52,
+ "value": "\"The input has to be a number between 0.00 and 1.00\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 63100,
- "length": 12,
- "value": "\"CREDENTIAL\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "Array",
+ "offset": 3730,
+ "length": 2,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63161,
- "length": 19,
- "value": "\"DATA_TRANSPARENCY\""
+ "offset": 5639,
+ "length": 31,
+ "value": "\"The input has to be a number.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 63236,
- "length": 27,
- "value": "\"DATA_TRANSPARENCY_CONSENT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "Array",
+ "offset": 6246,
+ "length": 2,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63319,
- "length": 26,
- "value": "\"DOCUMENTARY_VERIFICATION\""
+ "offset": 6299,
+ "length": 86,
+ "value": "\"The provided regex: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63383,
- "length": 7,
- "value": "\"ERROR\""
+ "offset": 6339,
+ "length": 2,
+ "value": "\" is invalid. This rule will count as passing.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63427,
- "length": 6,
- "value": "\"EXIT\""
+ "offset": 6536,
+ "length": 118,
+ "value": "\"Could not check that \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63474,
- "length": 11,
- "value": "\"KYC_CHECK\""
+ "offset": 6566,
+ "length": 7,
+ "value": "\" matches \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63529,
- "length": 14,
- "value": "\"SELFIE_CHECK\""
+ "offset": 6591,
+ "length": 3,
+ "value": "\" due to NSRange.init failing. This rule will count as passing.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 63583,
- "length": 9,
- "value": "\"LOADING\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "Array",
+ "offset": 6774,
+ "length": 2,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63639,
- "length": 17,
- "value": "\"MATCHED_CONSENT\""
+ "offset": 7312,
+ "length": 208,
+ "value": "\"Text Input with ID: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63706,
- "length": 20,
- "value": "\"MATCHED_CREDENTIAL\""
+ "offset": 7338,
+ "length": 5,
+ "value": "\" could not be checked for equality with Text Input of ID: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63769,
- "length": 13,
- "value": "\"MATCHED_MFA\""
+ "offset": 7424,
+ "length": 1,
+ "value": "\", due to no matching Text Input in \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63818,
- "length": 5,
- "value": "\"MFA\""
+ "offset": 7485,
+ "length": 1,
+ "value": "\". This rule will count as passing.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/LinkOOPWebViewController.swift",
"kind": "StringLiteral",
- "offset": 63863,
- "length": 9,
- "value": "\"NUMBERS\""
+ "offset": 572,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/LinkOOPWebViewController.swift",
"kind": "StringLiteral",
- "offset": 63929,
- "length": 28,
- "value": "\"NUMBERS_SELECT_INSTITUTION\""
+ "offset": 148,
+ "length": 24,
+ "value": "\"LinkKit.LinkOOPWebViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/LinkOOPWebViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4671,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InstitutionErrorCode.swift",
"kind": "StringLiteral",
- "offset": 63995,
- "length": 7,
- "value": "\"OAUTH\""
+ "offset": 1554,
+ "length": 18,
+ "value": "\"INSTITUTION_DOWN\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InstitutionErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64044,
- "length": 11,
- "value": "\"RECAPTCHA\""
+ "offset": 1630,
+ "length": 28,
+ "value": "\"INSTITUTION_NOT_RESPONDING\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InstitutionErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64097,
- "length": 12,
- "value": "\"RISK_CHECK\""
+ "offset": 1715,
+ "length": 27,
+ "value": "\"INSTITUTION_NOT_AVAILABLE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InstitutionErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64151,
- "length": 11,
- "value": "\"SCREENING\""
+ "offset": 1804,
+ "length": 33,
+ "value": "\"INSTITUTION_NO_LONGER_SUPPORTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64208,
+ "offset": 1995,
"length": 16,
- "value": "\"SELECT_ACCOUNT\""
+ "value": "\"MISSING_FIELDS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64271,
- "length": 18,
- "value": "\"SELECT_AUTH_TYPE\""
+ "offset": 2058,
+ "length": 16,
+ "value": "\"UNKNOWN_FIELDS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64333,
- "length": 14,
- "value": "\"SUBMIT_PHONE\""
+ "offset": 2120,
+ "length": 15,
+ "value": "\"INVALID_FIELD\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64391,
+ "offset": 2180,
"length": 14,
- "value": "\"VERIFY_PHONE\""
+ "value": "\"INVALID_BODY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64460,
- "length": 26,
- "value": "\"SELECT_SAVED_INSTITUTION\""
+ "offset": 2242,
+ "length": 17,
+ "value": "\"INVALID_HEADERS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64537,
- "length": 22,
- "value": "\"SELECT_SAVED_ACCOUNT\""
+ "offset": 2301,
+ "length": 11,
+ "value": "\"NOT_FOUND\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64603,
+ "offset": 2357,
"length": 14,
- "value": "\"SELECT_BRAND\""
- },
- {
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 64667,
- "length": 20,
- "value": "\"SELECT_INSTITUTION\""
- },
- {
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 64735,
- "length": 18,
- "value": "\"SUBMIT_DOCUMENTS\""
+ "value": "\"SANDBOX_ONLY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64808,
+ "offset": 6098,
"length": 26,
- "value": "\"SUBMIT_DOCUMENTS_SUCCESS\""
+ "value": "\"INSUFFICIENT_CREDENTIALS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64887,
- "length": 24,
- "value": "\"SUBMIT_DOCUMENTS_ERROR\""
+ "offset": 6176,
+ "length": 21,
+ "value": "\"INVALID_CREDENTIALS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64959,
- "length": 18,
- "value": "\"UPLOAD_DOCUMENTS\""
+ "offset": 6241,
+ "length": 13,
+ "value": "\"INVALID_MFA\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 65019,
- "length": 12,
- "value": "\"VERIFY_SMS\""
+ "offset": 6305,
+ "length": 21,
+ "value": "\"INVALID_SEND_METHOD\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 69560,
- "length": 6,
- "value": "\"code\""
+ "offset": 6382,
+ "length": 26,
+ "value": "\"INVALID_UPDATED_USERNAME\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 69606,
- "length": 8,
- "value": "\"device\""
+ "offset": 6452,
+ "length": 13,
+ "value": "\"ITEM_LOCKED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 69657,
- "length": 11,
- "value": "\"questions\""
+ "offset": 6516,
+ "length": 21,
+ "value": "\"ITEM_LOGIN_REQUIRED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 69712,
- "length": 12,
- "value": "\"selections\""
+ "offset": 6582,
+ "length": 15,
+ "value": "\"ITEM_NO_ERROR\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "BooleanLiteral",
- "offset": 70232,
- "length": 4,
- "value": "true"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6647,
+ "length": 20,
+ "value": "\"ITEM_NOT_SUPPORTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 75909,
- "length": 6,
- "value": "\"type\""
+ "offset": 6724,
+ "length": 27,
+ "value": "\"INCORRECT_DEPOSIT_AMOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 75941,
- "length": 6,
- "value": "\"code\""
+ "offset": 6802,
+ "length": 21,
+ "value": "\"USER_SETUP_REQUIRED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 75909,
- "length": 6,
- "value": "\"type\""
+ "offset": 6872,
+ "length": 19,
+ "value": "\"MFA_NOT_SUPPORTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 75941,
- "length": 6,
- "value": "\"code\""
+ "offset": 6935,
+ "length": 13,
+ "value": "\"NO_ACCOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76002,
- "length": 17,
- "value": "\"INVALID_REQUEST\""
+ "offset": 6996,
+ "length": 18,
+ "value": "\"NO_AUTH_ACCOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76065,
- "length": 15,
- "value": "\"INVALID_INPUT\""
+ "offset": 7068,
+ "length": 24,
+ "value": "\"NO_INVESTMENT_ACCOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76130,
- "length": 19,
- "value": "\"INSTITUTION_ERROR\""
+ "offset": 7145,
+ "length": 23,
+ "value": "\"NO_LIABILITY_ACCOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76200,
- "length": 21,
- "value": "\"RATE_LIMIT_EXCEEDED\""
+ "offset": 7217,
+ "length": 19,
+ "value": "\"PRODUCT_NOT_READY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76263,
- "length": 11,
- "value": "\"API_ERROR\""
+ "offset": 7290,
+ "length": 24,
+ "value": "\"PRODUCTS_NOT_SUPPORTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76317,
- "length": 12,
- "value": "\"ITEM_ERROR\""
+ "offset": 7366,
+ "length": 22,
+ "value": "\"INSTANT_MATCH_FAILED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/LinkEvent.swift",
"kind": "StringLiteral",
- "offset": 76372,
+ "offset": 1110,
"length": 12,
- "value": "\"AUTH_ERROR\""
+ "value": "\"event_name\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/LinkEvent.swift",
"kind": "StringLiteral",
- "offset": 76434,
- "length": 20,
- "value": "\"ASSET_REPORT_ERROR\""
+ "offset": 1110,
+ "length": 12,
+ "value": "\"event_name\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 76496,
- "length": 10,
- "value": "\"INTERNAL\""
+ "offset": 2438,
+ "length": 8,
+ "value": "\"assets\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78486,
- "length": 16,
- "value": "\"MISSING_FIELDS\""
+ "offset": 2484,
+ "length": 6,
+ "value": "\"auth\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78549,
+ "offset": 2537,
"length": 16,
- "value": "\"UNKNOWN_FIELDS\""
+ "value": "\"deposit_switch\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78611,
- "length": 15,
- "value": "\"INVALID_FIELD\""
+ "offset": 2595,
+ "length": 10,
+ "value": "\"identity\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78671,
- "length": 14,
- "value": "\"INVALID_BODY\""
+ "offset": 2645,
+ "length": 8,
+ "value": "\"income\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78733,
- "length": 17,
- "value": "\"INVALID_HEADERS\""
+ "offset": 2698,
+ "length": 13,
+ "value": "\"investments\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78792,
- "length": 11,
- "value": "\"NOT_FOUND\""
+ "offset": 2756,
+ "length": 13,
+ "value": "\"liabilities\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78848,
- "length": 14,
- "value": "\"SANDBOX_ONLY\""
+ "offset": 2820,
+ "length": 20,
+ "value": "\"liabilities_report\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 81867,
- "length": 18,
- "value": "\"INVALID_API_KEYS\""
+ "offset": 2891,
+ "length": 20,
+ "value": "\"payment_initiation\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 81942,
- "length": 26,
- "value": "\"UNAUTHORIZED_ENVIRONMENT\""
+ "offset": 2957,
+ "length": 14,
+ "value": "\"transactions\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkKitWorkflowBridge.swift",
"kind": "StringLiteral",
- "offset": 82020,
- "length": 22,
- "value": "\"INVALID_ACCESS_TOKEN\""
+ "offset": 4717,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 82094,
- "length": 22,
- "value": "\"INVALID_PUBLIC_TOKEN\""
+ "offset": 578,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 82164,
- "length": 17,
- "value": "\"INVALID_PRODUCT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 997,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 82231,
- "length": 20,
- "value": "\"INVALID_ACCOUNT_ID\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1295,
+ "length": 2,
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 82303,
- "length": 21,
- "value": "\"INVALID_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1374,
+ "length": 2,
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 82385,
- "length": 32,
- "value": "\"TOO_MANY_VERIFICATION_ATTEMPTS\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1730,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 84492,
- "length": 16,
- "value": "\"ACCOUNTS_LIMIT\""
+ "offset": 108,
+ "length": 25,
+ "value": "\"LinkKit.LoadingPaneViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 84555,
- "length": 16,
- "value": "\"ADDITION_LIMIT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/LinkTokenConfiguration.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1703,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 84614,
- "length": 12,
- "value": "\"AUTH_LIMIT\""
+ "offset": 2186,
+ "length": 218,
+ "value": "\"The Handler is being deinitialized before Link has completed or been exited. Did you forget to strongly reference the Handler object returned by `Plaid.create`?\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 84673,
- "length": 16,
- "value": "\"IDENTITY_LIMIT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6205,
+ "length": 3,
+ "value": "390"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 84734,
- "length": 14,
- "value": "\"INCOME_LIMIT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6218,
+ "length": 3,
+ "value": "690"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 84794,
- "length": 16,
- "value": "\"ITEM_GET_LIMIT\""
+ "offset": 10058,
+ "length": 39,
+ "value": "\"Ignoring onMailto on \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 84853,
- "length": 12,
- "value": "\"RATE_LIMIT\""
+ "offset": 10088,
+ "length": 1,
+ "value": "\" \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 84916,
- "length": 20,
- "value": "\"TRANSACTIONS_LIMIT\""
+ "offset": 10096,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 85999,
- "length": 23,
- "value": "\"INTERNAL_SERVER_ERROR\""
+ "offset": 10484,
+ "length": 50,
+ "value": "\"Link requires \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 86074,
- "length": 21,
- "value": "\"PLANNED_MAINTENANCE\""
+ "offset": 10507,
+ "length": 2,
+ "value": "\" to be a non-empty string.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92178,
- "length": 26,
- "value": "\"INSUFFICIENT_CREDENTIALS\""
+ "offset": 10789,
+ "length": 53,
+ "value": "\"Ignoring pane view model change on \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92256,
- "length": 21,
- "value": "\"INVALID_CREDENTIALS\""
+ "offset": 10833,
+ "length": 1,
+ "value": "\" \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92321,
- "length": 13,
- "value": "\"INVALID_MFA\""
+ "offset": 10841,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92385,
- "length": 21,
- "value": "\"INVALID_SEND_METHOD\""
+ "offset": 12433,
+ "length": 83,
+ "value": "\"Unexpected call to -startSession when state (\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92462,
- "length": 26,
- "value": "\"INVALID_UPDATED_USERNAME\""
+ "offset": 12487,
+ "length": 1,
+ "value": "\") is not .loadingSessionData\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92532,
- "length": 13,
- "value": "\"ITEM_LOCKED\""
+ "offset": 12624,
+ "length": 28,
+ "value": "\"Validation error: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92596,
- "length": 21,
- "value": "\"ITEM_LOGIN_REQUIRED\""
+ "offset": 12651,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92662,
- "length": 15,
- "value": "\"ITEM_NO_ERROR\""
+ "offset": 12685,
+ "length": 31,
+ "value": "\"Using token: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92727,
- "length": 20,
- "value": "\"ITEM_NOT_SUPPORTED\""
+ "offset": 12715,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 92804,
- "length": 27,
- "value": "\"INCORRECT_DEPOSIT_AMOUNTS\""
+ "offset": 8316,
+ "length": 12,
+ "value": "\"ACCEPT_TOS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 92882,
- "length": 21,
- "value": "\"USER_SETUP_REQUIRED\""
+ "offset": 8370,
+ "length": 11,
+ "value": "\"CONNECTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 92952,
- "length": 19,
- "value": "\"MFA_NOT_SUPPORTED\""
+ "offset": 8421,
+ "length": 9,
+ "value": "\"CONSENT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93015,
- "length": 13,
- "value": "\"NO_ACCOUNTS\""
+ "offset": 8473,
+ "length": 12,
+ "value": "\"CREDENTIAL\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93076,
- "length": 18,
- "value": "\"NO_AUTH_ACCOUNTS\""
+ "offset": 8534,
+ "length": 19,
+ "value": "\"DATA_TRANSPARENCY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93148,
- "length": 24,
- "value": "\"NO_INVESTMENT_ACCOUNTS\""
+ "offset": 8609,
+ "length": 27,
+ "value": "\"DATA_TRANSPARENCY_CONSENT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93225,
- "length": 23,
- "value": "\"NO_LIABILITY_ACCOUNTS\""
+ "offset": 8692,
+ "length": 26,
+ "value": "\"DOCUMENTARY_VERIFICATION\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93297,
- "length": 19,
- "value": "\"PRODUCT_NOT_READY\""
+ "offset": 8756,
+ "length": 7,
+ "value": "\"ERROR\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93370,
- "length": 24,
- "value": "\"PRODUCTS_NOT_SUPPORTED\""
+ "offset": 8800,
+ "length": 6,
+ "value": "\"EXIT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93446,
- "length": 22,
- "value": "\"INSTANT_MATCH_FAILED\""
+ "offset": 8847,
+ "length": 11,
+ "value": "\"KYC_CHECK\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 94472,
- "length": 19,
- "value": "\"PRODUCT_NOT_READY\""
+ "offset": 8902,
+ "length": 14,
+ "value": "\"SELFIE_CHECK\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 94544,
- "length": 22,
- "value": "\"VERIFICATION_EXPIRED\""
+ "offset": 8956,
+ "length": 9,
+ "value": "\"LOADING\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97460,
- "length": 21,
- "value": "\"PRODUCT_NOT_ENABLED\""
+ "offset": 9012,
+ "length": 17,
+ "value": "\"MATCHED_CONSENT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97530,
- "length": 18,
- "value": "\"DATA_UNAVAILABLE\""
+ "offset": 9079,
+ "length": 20,
+ "value": "\"MATCHED_CREDENTIAL\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97597,
- "length": 19,
- "value": "\"PRODUCT_NOT_READY\""
+ "offset": 9142,
+ "length": 13,
+ "value": "\"MATCHED_MFA\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97677,
- "length": 32,
- "value": "\"ASSET_REPORT_GENERATION_FAILED\""
+ "offset": 9191,
+ "length": 5,
+ "value": "\"MFA\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97756,
- "length": 16,
- "value": "\"INVALID_PARENT\""
+ "offset": 9236,
+ "length": 9,
+ "value": "\"NUMBERS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97824,
- "length": 22,
- "value": "\"INSIGHTS_NOT_ENABLED\""
+ "offset": 9302,
+ "length": 28,
+ "value": "\"NUMBERS_SELECT_INSTITUTION\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97908,
- "length": 33,
- "value": "\"INSIGHTS_PREVIOUSLY_NOT_ENABLED\""
+ "offset": 9368,
+ "length": 7,
+ "value": "\"OAUTH\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 99480,
- "length": 18,
- "value": "\"INSTITUTION_DOWN\""
+ "offset": 9417,
+ "length": 11,
+ "value": "\"RECAPTCHA\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 99556,
- "length": 28,
- "value": "\"INSTITUTION_NOT_RESPONDING\""
+ "offset": 9470,
+ "length": 12,
+ "value": "\"RISK_CHECK\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 99641,
- "length": 27,
- "value": "\"INSTITUTION_NOT_AVAILABLE\""
+ "offset": 9524,
+ "length": 11,
+ "value": "\"SCREENING\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 99730,
- "length": 33,
- "value": "\"INSTITUTION_NO_LONGER_SUPPORTED\""
+ "offset": 9581,
+ "length": 16,
+ "value": "\"SELECT_ACCOUNT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 373,
- "length": 10,
- "value": "\"html_url\""
+ "offset": 9644,
+ "length": 18,
+ "value": "\"SELECT_AUTH_TYPE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 407,
- "length": 10,
- "value": "\"tag_name\""
+ "offset": 9706,
+ "length": 14,
+ "value": "\"SUBMIT_PHONE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 482,
+ "offset": 9764,
"length": 14,
- "value": "\"published_at\""
+ "value": "\"VERIFY_PHONE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 373,
- "length": 10,
- "value": "\"html_url\""
+ "offset": 9833,
+ "length": 26,
+ "value": "\"SELECT_SAVED_INSTITUTION\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 407,
- "length": 10,
- "value": "\"tag_name\""
+ "offset": 9910,
+ "length": 22,
+ "value": "\"SELECT_SAVED_ACCOUNT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 482,
+ "offset": 9976,
"length": 14,
- "value": "\"published_at\""
+ "value": "\"SELECT_BRAND\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 304,
- "length": 7,
- "value": "\"Plaid\""
+ "offset": 10040,
+ "length": 20,
+ "value": "\"SELECT_INSTITUTION\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 342,
- "length": 9,
- "value": "\"LinkKit\""
+ "offset": 10108,
+ "length": 18,
+ "value": "\"SUBMIT_DOCUMENTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 510,
- "length": 20,
- "value": "\"ReactNativeLinkSdk\""
+ "offset": 10181,
+ "length": 26,
+ "value": "\"SUBMIT_DOCUMENTS_SUCCESS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 830,
- "length": 8,
- "value": "\"%@\/%@ \""
+ "offset": 10260,
+ "length": 24,
+ "value": "\"SUBMIT_DOCUMENTS_ERROR\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 989,
- "length": 2,
- "value": "\"\""
+ "offset": 10332,
+ "length": 18,
+ "value": "\"UPLOAD_DOCUMENTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 1045,
- "length": 29,
- "value": "\"%@%@%@\/%@(%@) %@-%@ (%@ %@)\""
+ "offset": 10392,
+ "length": 12,
+ "value": "\"VERIFY_SMS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/KeyValueService.swift",
"kind": "StringLiteral",
- "offset": 1293,
- "length": 2,
- "value": "\"\""
+ "offset": 148,
+ "length": 30,
+ "value": "\"com.plaid.link.persistent-id\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/KeyValueService.swift",
"kind": "StringLiteral",
- "offset": 1357,
- "length": 2,
- "value": "\"\""
+ "offset": 148,
+ "length": 30,
+ "value": "\"com.plaid.link.persistent-id\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 706,
- "length": 3,
- "value": "118"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3350,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 712,
- "length": 3,
- "value": "255"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3406,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 724,
- "length": 3,
- "value": "118"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3676,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 730,
- "length": 3,
- "value": "255"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4851,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 741,
- "length": 3,
- "value": "118"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5010,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 747,
- "length": 3,
- "value": "255"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5247,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "FloatLiteral",
- "offset": 759,
- "length": 4,
- "value": "0.20"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 792,
+ "length": 68,
+ "value": "\"Failed to decode verification status from rawValue: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 798,
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 859,
"length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "FloatLiteral",
- "offset": 835,
- "length": 3,
- "value": "8.0"
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 356,
- "length": 22,
- "value": "\"LinkKit.TodoPaneViewController\""
+ "offset": 1236,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 376,
- "length": 11,
- "value": "\"RNLinksdk\""
+ "offset": 1470,
+ "length": 32,
+ "value": "\"pending_automatic_verification\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 536,
- "length": 12,
- "value": "\"sdkVersion\""
+ "offset": 1551,
+ "length": 29,
+ "value": "\"pending_manual_verification\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 965,
- "length": 15,
- "value": "\"0.0.0-unknown\""
- },
- {
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
- "kind": "Dictionary",
- "offset": 483,
- "length": 3,
- "value": "[]"
+ "offset": 1620,
+ "length": 19,
+ "value": "\"manually_verified\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/LinkOOPWebViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 170,
- "length": 24,
- "value": "\"LinkKit.LinkOOPWebViewController\""
+ "offset": 1923,
+ "length": 32,
+ "value": "\"pending_automatic_verification\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 108,
- "length": 25,
- "value": "\"LinkKit.LoadingPaneViewController\""
+ "offset": 2013,
+ "length": 29,
+ "value": "\"pending_manual_verification\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
- "kind": "Dictionary",
- "offset": 3085,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2091,
+ "length": 19,
+ "value": "\"manually_verified\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
- "kind": "Dictionary",
- "offset": 6957,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2150,
+ "length": 9,
+ "value": "\"unknown\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 11062,
- "length": 2,
- "value": "\"\""
+ "offset": 2899,
+ "length": 21,
+ "value": "\"PRODUCT_NOT_ENABLED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 11106,
- "length": 16,
- "value": "\"institution_id\""
+ "offset": 2969,
+ "length": 18,
+ "value": "\"DATA_UNAVAILABLE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
- "kind": "BooleanLiteral",
- "offset": 11272,
- "length": 5,
- "value": "false"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3036,
+ "length": 19,
+ "value": "\"PRODUCT_NOT_READY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 11319,
- "length": 16,
- "value": "\"select_account\""
+ "offset": 3116,
+ "length": 32,
+ "value": "\"ASSET_REPORT_GENERATION_FAILED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/KeyValueService.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 148,
- "length": 30,
- "value": "\"com.plaid.link.persistent-id\""
+ "offset": 3195,
+ "length": 16,
+ "value": "\"INVALID_PARENT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/KeyValueService.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 148,
- "length": 30,
- "value": "\"com.plaid.link.persistent-id\""
+ "offset": 3263,
+ "length": 22,
+ "value": "\"INSIGHTS_NOT_ENABLED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkPublicKeyConfiguration+Workflow.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 1921,
- "length": 31,
- "value": "\"com.plaid.com.workflow-bridge\""
+ "offset": 3347,
+ "length": 33,
+ "value": "\"INSIGHTS_PREVIOUSLY_NOT_ENABLED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Constants.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Constants.swift",
"kind": "StringLiteral",
"offset": 90,
"length": 11,
"value": "\"plaidlink\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Constants.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Constants.swift",
"kind": "StringLiteral",
"offset": 90,
"length": 11,
"value": "\"plaidlink\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1532,
+ "offset": 793,
"length": 20,
"value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1562,
+ "offset": 823,
"length": 9,
"value": "2"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1581,
+ "offset": 842,
"length": 18,
"value": "3"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1609,
+ "offset": 870,
"length": 24,
"value": "4"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1643,
+ "offset": 904,
"length": 23,
"value": "5"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1676,
+ "offset": 937,
"length": 12,
"value": "6"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1532,
+ "offset": 793,
"length": 20,
"value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1562,
+ "offset": 823,
"length": 9,
"value": "2"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "IntegerLiteral",
- "offset": 1581,
- "length": 18,
- "value": "3"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "IntegerLiteral",
+ "offset": 842,
+ "length": 18,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "IntegerLiteral",
+ "offset": 870,
+ "length": 24,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "IntegerLiteral",
+ "offset": 904,
+ "length": 23,
+ "value": "5"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "IntegerLiteral",
+ "offset": 937,
+ "length": 12,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 1547,
+ "length": 130,
+ "value": "\"Embedded search does not support public key configuration. Create your Handler using a link token.\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 1810,
+ "length": 9,
+ "value": "\"message\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 2156,
+ "length": 9,
+ "value": "\"message\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 2263,
+ "length": 14,
+ "value": "\"LinkKit.PLKHandlerShim\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 17143,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 17204,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "IntegerLiteral",
- "offset": 1609,
- "length": 24,
- "value": "4"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 17258,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1643,
- "length": 23,
- "value": "5"
+ "offset": 19460,
+ "length": 2,
+ "value": "-1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "IntegerLiteral",
- "offset": 1676,
- "length": 12,
- "value": "6"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 27512,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "Dictionary",
- "offset": 3736,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 30041,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "Dictionary",
- "offset": 3995,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 30081,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "Dictionary",
- "offset": 4208,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 30144,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 3002,
- "length": 14,
- "value": "\"LinkKit.PLKHandlerShim\""
+ "offset": 1312,
+ "length": 3,
+ "value": "\".\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "IntegerLiteral",
- "offset": 5932,
- "length": 15,
- "value": "1"
+ "offset": 1347,
+ "length": 1,
+ "value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "IntegerLiteral",
- "offset": 5932,
- "length": 15,
+ "offset": 1383,
+ "length": 1,
"value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2642,
+ "offset": 2869,
"length": 9,
"value": "\"unknown\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2690,
+ "offset": 2917,
"length": 7,
"value": "\"other\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2737,
+ "offset": 2964,
"length": 8,
"value": "\"credit\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2783,
+ "offset": 3010,
"length": 6,
"value": "\"loan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2833,
+ "offset": 3060,
"length": 12,
"value": "\"depository\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2889,
+ "offset": 3116,
"length": 12,
"value": "\"investment\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2938,
+ "offset": 3165,
"length": 5,
"value": "\"all\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 3542,
+ "offset": 3769,
"length": 7,
"value": "\"other\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 4269,
+ "offset": 4496,
"length": 13,
"value": "\"credit card\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 4322,
+ "offset": 4549,
"length": 8,
"value": "\"paypal\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 5975,
+ "offset": 6202,
"length": 6,
"value": "\"auto\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6023,
+ "offset": 6250,
"length": 10,
"value": "\"business\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6077,
+ "offset": 6304,
"length": 12,
"value": "\"commercial\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6135,
+ "offset": 6362,
"length": 14,
"value": "\"construction\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6191,
+ "offset": 6418,
"length": 10,
"value": "\"consumer\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6245,
+ "offset": 6472,
"length": 13,
"value": "\"home equity\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6304,
+ "offset": 6531,
"length": 16,
"value": "\"line of credit\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6358,
+ "offset": 6585,
"length": 6,
"value": "\"loan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6406,
+ "offset": 6633,
"length": 10,
"value": "\"mortgage\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6459,
+ "offset": 6686,
"length": 11,
"value": "\"overdraft\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6511,
+ "offset": 6738,
"length": 9,
"value": "\"student\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 7917,
+ "offset": 8144,
"length": 17,
"value": "\"cash management\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 7970,
+ "offset": 8197,
"length": 4,
"value": "\"cd\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8016,
+ "offset": 8243,
"length": 10,
"value": "\"checking\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8063,
+ "offset": 8290,
"length": 5,
"value": "\"ebt\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8105,
+ "offset": 8332,
"length": 5,
"value": "\"hsa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8155,
+ "offset": 8382,
"length": 14,
"value": "\"money market\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8209,
+ "offset": 8436,
"length": 8,
"value": "\"paypal\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8258,
+ "offset": 8485,
"length": 9,
"value": "\"prepaid\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8308,
+ "offset": 8535,
"length": 9,
"value": "\"savings\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13420,
+ "offset": 13647,
"length": 6,
"value": "\"401a\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13474,
+ "offset": 13701,
"length": 6,
"value": "\"401k\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13528,
+ "offset": 13755,
"length": 6,
"value": "\"403B\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13582,
+ "offset": 13809,
"length": 6,
"value": "\"457b\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13635,
+ "offset": 13862,
"length": 5,
"value": "\"529\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13683,
+ "offset": 13910,
"length": 11,
"value": "\"brokerage\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13735,
+ "offset": 13962,
"length": 10,
"value": "\"cash isa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13802,
+ "offset": 14029,
"length": 27,
"value": "\"education savings account\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13875,
+ "offset": 14102,
"length": 15,
"value": "\"fixed annuity\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13927,
+ "offset": 14154,
"length": 5,
"value": "\"gic\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13996,
+ "offset": 14223,
"length": 34,
"value": "\"health reimbursement arrangement\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14067,
+ "offset": 14294,
"length": 5,
"value": "\"hsa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14109,
+ "offset": 14336,
"length": 5,
"value": "\"ira\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14151,
+ "offset": 14378,
"length": 5,
"value": "\"isa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14195,
+ "offset": 14422,
"length": 7,
"value": "\"keogh\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14239,
+ "offset": 14466,
"length": 5,
"value": "\"lif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14282,
+ "offset": 14509,
"length": 6,
"value": "\"lira\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14326,
+ "offset": 14553,
"length": 6,
"value": "\"lrif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14370,
+ "offset": 14597,
"length": 6,
"value": "\"lrsp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14420,
+ "offset": 14647,
"length": 13,
"value": "\"mutual fund\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14493,
+ "offset": 14720,
"length": 31,
"value": "\"non-taxable brokerage account\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14565,
+ "offset": 14792,
"length": 9,
"value": "\"pension\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14612,
+ "offset": 14839,
"length": 6,
"value": "\"plan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14656,
+ "offset": 14883,
"length": 6,
"value": "\"prif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14713,
+ "offset": 14940,
"length": 21,
"value": "\"profit sharing plan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14772,
+ "offset": 14999,
"length": 6,
"value": "\"rdsp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14816,
+ "offset": 15043,
"length": 6,
"value": "\"resp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14866,
+ "offset": 15093,
"length": 12,
"value": "\"retirement\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14916,
+ "offset": 15143,
"length": 6,
"value": "\"rlif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14964,
+ "offset": 15191,
"length": 11,
"value": "\"roth 401k\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15013,
+ "offset": 15240,
"length": 6,
"value": "\"roth\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15057,
+ "offset": 15284,
"length": 6,
"value": "\"rrif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15101,
+ "offset": 15328,
"length": 6,
"value": "\"rrsp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15147,
+ "offset": 15374,
"length": 8,
"value": "\"sarsep\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15195,
+ "offset": 15422,
"length": 9,
"value": "\"sep ira\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15247,
+ "offset": 15474,
"length": 12,
"value": "\"simple ira\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15297,
+ "offset": 15524,
"length": 6,
"value": "\"sipp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15346,
+ "offset": 15573,
"length": 12,
"value": "\"stock plan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15396,
+ "offset": 15623,
"length": 6,
"value": "\"tfsa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15453,
+ "offset": 15680,
"length": 21,
"value": "\"thrift savings plan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15513,
+ "offset": 15740,
"length": 7,
"value": "\"trust\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15558,
+ "offset": 15785,
"length": 6,
"value": "\"ugma\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15602,
+ "offset": 15829,
"length": 6,
"value": "\"utma\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15657,
+ "offset": 15884,
"length": 18,
"value": "\"variable annuity\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Component.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
"kind": "IntegerLiteral",
"offset": 2448,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Component.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
"kind": "IntegerLiteral",
"offset": 2461,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/ConsentPaneViewController.swift",
- "kind": "IntegerLiteral",
- "offset": 6999,
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2999,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "Array",
+ "offset": 3058,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 3510,
+ "length": 6,
+ "value": "\"fill\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 3718,
+ "length": 21,
+ "value": "\"exactWidth(\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 3738,
+ "length": 3,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 3872,
+ "length": 11,
+ "value": "\"centerX()\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 4209,
+ "length": 24,
+ "value": "\"exactHeight(\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 4231,
"length": 1,
- "value": "1"
+ "value": "\")\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/ConsentPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
"kind": "StringLiteral",
- "offset": 245,
- "length": 25,
- "value": "\"LinkKit.ConsentPaneViewController\""
+ "offset": 4366,
+ "length": 11,
+ "value": "\"centerY()\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 5653,
+ "length": 12,
+ "value": "\"stackFirst\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 6323,
+ "length": 12,
+ "value": "\"stackBelow\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 6798,
+ "length": 12,
+ "value": "\"stackPrior\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 7442,
+ "length": 10,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 7451,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7510,
+ "length": 2,
+ "value": "20"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7543,
+ "length": 2,
+ "value": "10"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8060,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8091,
+ "length": 2,
+ "value": "10"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "StringLiteral",
"offset": 585,
"length": 12,
"value": "\"hw.machine\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "IntegerLiteral",
"offset": 617,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "IntegerLiteral",
"offset": 672,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "IntegerLiteral",
"offset": 716,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "IntegerLiteral",
"offset": 790,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "StringLiteral",
"offset": 2568,
"length": 9,
"value": "\"LinkKit\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 669,
+ "length": 8,
+ "value": "\"ipwvfb\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1011,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 1337,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2309,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2336,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2362,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2594,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2746,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3084,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3208,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3320,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3451,
+ "length": 1,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 5880,
+ "length": 109,
+ "value": "\"Refusing to start webview fallback with webview having already loaded \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 5984,
+ "length": 3,
+ "value": "\"?\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 5988,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 6052,
+ "length": 54,
+ "value": "\"Starting webview fallback using URL \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 6105,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 6590,
+ "length": 37,
+ "value": "\"webview fallback URL change: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 6626,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6831,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7240,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9850,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 11809,
+ "length": 58,
+ "value": "\"Error on ASWebAuthenticationSession completion: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 11866,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12970,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
"kind": "StringLiteral",
"offset": 404,
"length": 34,
"value": "\"LinkKit.InProcessWebviewFallbackController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/FlutterLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18756,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "StringLiteral",
+ "offset": 772,
+ "length": 39,
+ "value": "\"init(frame:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "StringLiteral",
+ "offset": 907,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 2772,
+ "length": 3,
+ "value": "0.3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 2932,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 2977,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3043,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3149,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3329,
+ "length": 3,
+ "value": "0.3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3489,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3594,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3641,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3707,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4319,
+ "length": 3,
+ "value": "0.3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4479,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4526,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4592,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4696,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4970,
+ "length": 3,
+ "value": "0.3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5141,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5196,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5243,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5288,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5652,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5890,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6521,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6895,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7027,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7814,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8052,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8360,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8513,
+ "length": 2,
+ "value": "48"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8588,
+ "length": 2,
+ "value": "48"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 8873,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8904,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9011,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 9563,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9624,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 10033,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 10099,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/FlutterLinkKit.swift",
"kind": "StringLiteral",
"offset": 258,
"length": 20,
"value": "\"PlaidFlutterPlugin\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/FlutterLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/FlutterLinkKit.swift",
"kind": "StringLiteral",
"offset": 402,
"length": 54,
"value": "\"getLinkTokenConfigurationWithToken:onSuccessHandler:\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/FlutterLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/FlutterLinkKit.swift",
"kind": "BooleanLiteral",
"offset": 550,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/FlutterLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/FlutterLinkKit.swift",
"kind": "BooleanLiteral",
"offset": 594,
"length": 5,
"value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkUIController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "Array",
+ "offset": 139,
+ "length": 27,
+ "value": "[3, 7, 1, 3, 7, 1, 3, 7, 1]"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "BooleanLiteral",
+ "offset": 397,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "IntegerLiteral",
+ "offset": 452,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "IntegerLiteral",
+ "offset": 611,
+ "length": 2,
+ "value": "10"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "IntegerLiteral",
+ "offset": 618,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3020,
+ "length": 18,
+ "value": "\"INVALID_API_KEYS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3095,
+ "length": 26,
+ "value": "\"UNAUTHORIZED_ENVIRONMENT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3173,
+ "length": 22,
+ "value": "\"INVALID_ACCESS_TOKEN\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3247,
+ "length": 22,
+ "value": "\"INVALID_PUBLIC_TOKEN\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3317,
+ "length": 17,
+ "value": "\"INVALID_PRODUCT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3384,
+ "length": 20,
+ "value": "\"INVALID_ACCOUNT_ID\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3456,
+ "length": 21,
+ "value": "\"INVALID_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3538,
+ "length": 32,
+ "value": "\"TOO_MANY_VERIFICATION_ATTEMPTS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
"kind": "BooleanLiteral",
"offset": 920,
"length": 5,
"value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "StringLiteral",
+ "offset": 1184,
+ "length": 44,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "StringLiteral",
+ "offset": 1197,
+ "length": 6,
+ "value": "\" called outside of main thread\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1316,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1605,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "StringLiteral",
+ "offset": 1730,
+ "length": 44,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "StringLiteral",
+ "offset": 1743,
+ "length": 6,
+ "value": "\" called outside of main thread\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1812,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2191,
+ "length": 4,
+ "value": "true"
}
]
}
\ No newline at end of file
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface
index 79755993..ecdc9911 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface
@@ -1,6 +1,6 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
-// swift-module-flags: -target arm64-apple-ios14.2-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Osize -module-name LinkKit
+// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
+// swift-module-flags: -target arm64-apple-ios14.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Osize -module-name LinkKit
// swift-module-flags-ignorable: -enable-bare-slash-regex
import AuthenticationServices
import Foundation
@@ -10,96 +10,121 @@ import Swift
import UIKit
import WebKit
import _Concurrency
+import _StringProcessing
+import _SwiftConcurrencyShims
import os
+public enum PresentationMethod {
+ case viewController(UIKit.UIViewController)
+ case custom(LinkKit.PresentationHandler, _: LinkKit.DismissalHandler = { $0.presentingViewController?.dismiss(animated: true, completion: nil) })
+}
+public struct ExitMetadata : Swift.Codable {
+ public var status: LinkKit.ExitStatus?
+ public var institution: LinkKit.Institution?
+ public var linkSessionID: Swift.String?
+ public var requestID: Swift.String?
+ public var metadataJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
+public enum ExitErrorCode : Swift.Codable {
+ case apiError(LinkKit.ApiErrorCode)
+ case authError(LinkKit.AuthErrorCode)
+ case assetReportError(LinkKit.AssetReportErrorCode)
+ case `internal`(Swift.String)
+ case institutionError(LinkKit.InstitutionErrorCode)
+ case itemError(LinkKit.ItemErrorCode)
+ case invalidInput(LinkKit.InvalidInputErrorCode)
+ case invalidRequest(LinkKit.InvalidRequestErrorCode)
+ case rateLimitExceeded(LinkKit.RateLimitErrorCode)
+ case unknown(type: Swift.String, code: Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
+}
extension Foundation.UUID {
public var linkuuidString: Swift.String {
get
}
}
-public struct Plaid {
- public enum CreateError : Swift.Error {
- case configurationError(LinkKit.ConfigurationError)
- }
- @available(*, deprecated, message: "This function will be removed in LinkKit V5.0.0. Use `create(_ linkTokenConfiguration: LinkTokenConfiguration)` instead.")
- public static func create(_ linkPublicKeyConfiguration: LinkKit.LinkPublicKeyConfiguration) -> Swift.Result
- public static func create(_ linkTokenConfiguration: LinkKit.LinkTokenConfiguration) -> Swift.Result
- public static let version: Swift.String
+public struct LinkSuccess : Swift.Codable {
+ public var publicToken: Swift.String
+ public var metadata: LinkKit.SuccessMetadata
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-@available(*, deprecated, message: "HandlerContinueError is deprecated, use Handler.continue(from:) instead of Handler.continueFrom(redirectUri:)")
-public enum HandlerContinueError : Swift.Error {
- case invalidRedirect(Swift.String)
- case `internal`
+public enum EventName : Swift.CustomStringConvertible, Swift.Codable {
+ case bankIncomeInsightsCompleted
+ case closeOAuth
+ case error
+ case exit
+ case failOAuth
+ case handoff
+ case identityVerificationStartStep
+ case identityVerificationPassStep
+ case identityVerificationFailStep
+ case identityVerificationPendingReviewStep
+ case identityVerificationCreateSession
+ case identityVerificationResumeSession
+ case identityVerificationPassSession
+ case identityVerificationFailSession
+ case identityVerificationPendingReviewSession
+ case identityVerificationOpenUI
+ case identityVerificationResumeUI
+ case identityVerificationCloseUI
+ case matchedSelectInstitution
+ case matchedSelectVerifyMethod
+ case open
+ case openMyPlaid
+ case openOAuth
+ case searchInstitution
+ case selectDegradedInstitution
+ case selectFilteredInstitution
+ case selectDownInstitution
+ case selectInstitution
+ case selectBrand
+ case selectAuthType
+ case submitAccountNumber
+ case submitDocuments
+ case submitDocumentsSuccess
+ case submitDocumentsError
+ case submitRoutingNumber
+ case submitCredentials
+ case submitMFA
+ case transitionView
+ case viewDataTypes
+ case submitPhone
+ case skipSubmitPhone
+ case verifyPhone
+ case connectNewInstitution
+ case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public protocol Handler {
- func open(presentUsing method: LinkKit.PresentationMethod)
- @available(*, deprecated, message: "open with options is deprecated")
- func open(presentUsing method: LinkKit.PresentationMethod, _ options: LinkKit.OpenOptions)
- func createEmbeddedView(presentUsing: LinkKit.PresentationMethod) -> Swift.Result
- @available(*, deprecated, message: "`continueFrom(redirectUri:) -> HandlerContinueError?` is deprecated. Use `continue(from:) -> Void`")
- func continueFrom(redirectUri: Foundation.URL) -> LinkKit.HandlerContinueError?
- @available(*, deprecated, message: "This function will be removed in LinkKit V5.0.0. This function should only be used if your app crashed or was killed during an out-of-process OAuth flow. Use `resumeAfterTermination(from redirectUri: URL)`")
- func `continue`(from redirectUri: Foundation.URL)
- func resumeAfterTermination(from redirectUri: Foundation.URL)
+public struct Institution : Swift.Codable {
+ public var id: LinkKit.InstitutionID
+ public var name: Swift.String
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public struct LinkTokenConfiguration {
- public let token: Swift.String
- public var onSuccess: LinkKit.OnSuccessHandler
- public var onExit: (LinkKit.LinkExit) -> Swift.Void
- public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
- public var noLoadingState: Swift.Bool
- public init(token: Swift.String, onSuccess: @escaping LinkKit.OnSuccessHandler)
+public enum ConfigurationError : Swift.Error {
+ case malformedClientID(message: Swift.String)
+ case missingAuthorization(message: Swift.String)
+ case noProduct(message: Swift.String)
+ case invalidOptionValue(message: Swift.String)
+ case invalidOptionCombination(message: Swift.String)
+ case invalidToken(message: Swift.String)
}
-public struct OAuthNonceConfiguration {
- public let nonce: LinkKit.OAuthNonce
- public let redirectUri: Foundation.URL
- public init(nonce: Swift.String, redirectUri: Foundation.URL)
-}
-public struct LinkPublicKeyConfiguration {
- public enum Token {
- @available(*, deprecated, message: "publicKey is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case payment(LinkKit.PaymentToken, LinkKit.PublicKey)
- @available(*, deprecated, message: "publicToken is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case depositSwitchToken(LinkKit.DepositSwitchToken, LinkKit.PublicKey)
- @available(*, deprecated, message: "publicKey is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case publicKey(LinkKit.PublicKey)
- @available(*, deprecated, message: "publicToken is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case publicToken(LinkKit.PublicToken, LinkKit.PublicKey)
- }
- public var clientName: Swift.String
- public var environment: LinkKit.Environment
- public var products: Swift.Set
- public var language: LinkKit.Language
- public var countryCodes: [LinkKit.CountryCode]
- public var token: LinkKit.LinkPublicKeyConfiguration.Token
- public var onSuccess: LinkKit.OnSuccessHandler
- public var onExit: (LinkKit.LinkExit) -> Swift.Void
- public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
- public var webhook: Foundation.URL?
- public var userLegalName: Swift.String?
- public var userEmailAddress: Swift.String?
- public var userPhoneNumber: Swift.String?
- public var linkCustomizationName: Swift.String?
- public var accountSubtypes: [LinkKit.AccountSubtype]
- public var oauthConfiguration: LinkKit.OAuthNonceConfiguration?
- public init(clientName: Swift.String, environment: LinkKit.Environment, products: Swift.Set, language: LinkKit.Language, token: LinkKit.LinkPublicKeyConfiguration.Token, countryCodes: [LinkKit.CountryCode], onSuccess: @escaping LinkKit.OnSuccessHandler)
+public struct LinkExit : Swift.Codable {
+ public var error: LinkKit.ExitError?
+ public var metadata: LinkKit.ExitMetadata
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public typealias PublicKey = Swift.String
-public typealias PublicToken = Swift.String
-public typealias PaymentToken = Swift.String
-public typealias DepositSwitchToken = Swift.String
-public typealias Language = Swift.String
-public typealias CountryCode = Swift.String
-public typealias OAuthNonce = Swift.String
-public typealias PresentationHandler = (UIKit.UIViewController) -> Swift.Void
-public typealias DismissalHandler = (UIKit.UIViewController) -> Swift.Void
-public typealias OnSuccessHandler = (LinkKit.LinkSuccess) -> Swift.Void
-public typealias OnExitHandler = (LinkKit.LinkExit) -> Swift.Void
-public typealias OnEventHandler = (LinkKit.LinkEvent) -> Swift.Void
-public typealias OpenOptions = [Swift.String : Swift.String]
-public typealias RawJSONMetadata = Swift.String
-public typealias InstitutionID = Swift.String
-public typealias AccountID = Swift.String
-public typealias AccountMask = Swift.String
public enum AccountSubtype : Swift.Codable {
case unknown(type: Swift.String, subtype: Swift.String)
case other(LinkKit.AccountSubtype.Other)
@@ -107,7 +132,7 @@ public enum AccountSubtype : Swift.Codable {
case all
case other
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case credit(LinkKit.AccountSubtype.Credit)
public enum Credit : Swift.Codable {
@@ -115,7 +140,7 @@ public enum AccountSubtype : Swift.Codable {
case creditCard
case paypal
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case loan(LinkKit.AccountSubtype.Loan)
public enum Loan : Swift.Codable {
@@ -132,7 +157,7 @@ public enum AccountSubtype : Swift.Codable {
case overdraft
case student
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case depository(LinkKit.AccountSubtype.Depository)
public enum Depository : Swift.Codable {
@@ -147,7 +172,7 @@ public enum AccountSubtype : Swift.Codable {
case prepaid
case savings
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case investment(LinkKit.AccountSubtype.Investment)
public enum Investment : Swift.Codable {
@@ -197,101 +222,40 @@ public enum AccountSubtype : Swift.Codable {
case unknown(Swift.String)
case utma
case variableAnnuity
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
- public init(from decoder: Swift.Decoder) throws
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct LinkSuccess : Swift.Codable {
- public var publicToken: Swift.String
- public var metadata: LinkKit.SuccessMetadata
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct LinkExit : Swift.Codable {
- public var error: LinkKit.ExitError?
- public var metadata: LinkKit.ExitMetadata
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct LinkEvent : Swift.Codable {
- public var eventName: LinkKit.EventName
- public var metadata: LinkKit.EventMetadata
- public init(from decoder: Swift.Decoder) throws
- public func encode(to encoder: Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public enum ConfigurationError : Swift.Error {
- case malformedClientID(message: Swift.String)
- case missingAuthorization(message: Swift.String)
- case noProduct(message: Swift.String)
- case invalidOptionValue(message: Swift.String)
- case invalidOptionCombination(message: Swift.String)
- case invalidToken(message: Swift.String)
-}
-public enum Environment : Swift.CustomStringConvertible {
- case production
- case development
- case sandbox
- public var description: Swift.String {
- get
- }
- public static func == (a: LinkKit.Environment, b: LinkKit.Environment) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
+public struct SuccessMetadata : Swift.Codable {
+ public var institution: LinkKit.Institution
+ public var accounts: [LinkKit.Account]
+ public var linkSessionID: Swift.String
+ public var metadataJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public enum Product : Swift.CustomStringConvertible, Swift.CaseIterable {
- case assets
- case auth
- case depositSwitch
- case identity
- case income
- case investments
- case liabilities
- case liabilitiesReport
- case paymentInitiation
- case transactions
+public enum RateLimitErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case accountsLimit
+ case additionLimit
+ case authLimit
+ case identityLimit
+ case incomeLimit
+ case itemGetLimit
+ case rateLimit
+ case transactionsLimit
+ case unknown(Swift.String)
public var description: Swift.String {
get
}
- public static func == (a: LinkKit.Product, b: LinkKit.Product) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public typealias AllCases = [LinkKit.Product]
- public static var allCases: [LinkKit.Product] {
- get
- }
- public var hashValue: Swift.Int {
- get
- }
}
-public enum VerificationStatus : Swift.CustomStringConvertible, Swift.Codable {
- case pendingAutomaticVerification
- case pendingManualVerification
- case manuallyVerified
+public enum ApiErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case internalServerError
+ case plannedMaintenance
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct Account : Swift.Codable {
- public let id: LinkKit.AccountID
- public let name: Swift.String
- public let mask: LinkKit.AccountMask?
- public let subtype: LinkKit.AccountSubtype
- public let verificationStatus: LinkKit.VerificationStatus?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct SuccessMetadata : Swift.Codable {
- public var institution: LinkKit.Institution
- public var accounts: [LinkKit.Account]
- public var linkSessionID: Swift.String
- public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
}
public enum ExitStatus : Swift.CustomStringConvertible, Swift.Codable {
case requiresQuestions
@@ -303,128 +267,11 @@ public enum ExitStatus : Swift.CustomStringConvertible, Swift.Codable {
case requiresAccountSelection
case continueToThirdParty
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
- public var description: Swift.String {
- get
- }
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct ExitError : Swift.Error, Swift.Codable {
- public var errorCode: LinkKit.ExitErrorCode
- public var errorMessage: Swift.String
- public var displayMessage: Swift.String?
- public var errorJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct Institution : Swift.Codable {
- public var id: LinkKit.InstitutionID
- public var name: Swift.String
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct ExitMetadata : Swift.Codable {
- public var status: LinkKit.ExitStatus?
- public var institution: LinkKit.Institution?
- public var linkSessionID: Swift.String?
- public var requestID: Swift.String?
- public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public enum EventName : Swift.CustomStringConvertible, Swift.Codable {
- case bankIncomeInsightsCompleted
- case closeOAuth
- case error
- case exit
- case failOAuth
- case handoff
- case identityVerificationStartStep
- case identityVerificationPassStep
- case identityVerificationFailStep
- case identityVerificationPendingReviewStep
- case identityVerificationCreateSession
- case identityVerificationResumeSession
- case identityVerificationPassSession
- case identityVerificationFailSession
- case identityVerificationPendingReviewSession
- case identityVerificationOpenUI
- case identityVerificationResumeUI
- case identityVerificationCloseUI
- case matchedSelectInstitution
- case matchedSelectVerifyMethod
- case open
- case openMyPlaid
- case openOAuth
- case searchInstitution
- case selectDegradedInstitution
- case selectFilteredInstitution
- case selectDownInstitution
- case selectInstitution
- case selectBrand
- case selectAuthType
- case submitAccountNumber
- case submitDocuments
- case submitDocumentsSuccess
- case submitDocumentsError
- case submitRoutingNumber
- case submitCredentials
- case submitMFA
- case transitionView
- case viewDataTypes
- case submitPhone
- case skipSubmitPhone
- case verifyPhone
- case connectNewInstitution
- case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
- public var description: Swift.String {
- get
- }
- public func encode(to encoder: Swift.Encoder) throws
-}
-public enum ViewName : Swift.CustomStringConvertible, Swift.Codable {
- case acceptTOS
- case connected
- case consent
- case credential
- case dataTransparency
- case dataTransparencyConsent
- case documentaryVerification
- case error
- case exit
- case kycCheck
- case loading
- case matchedConsent
- case matchedCredential
- case matchedMFA
- case mfa
- case numbers
- case numbersSelectInstitution
- case oauth
- case recaptcha
- case riskCheck
- case screening
- case selectAccount
- case selectAuthType
- case submitPhone
- case verifyPhone
- case selectSavedInstitution
- case selectSavedAccount
- case selectBrand
- case selectInstitution
- case selfieCheck
- case uploadDocuments
- case submitDocuments
- case submitDocumentsSuccess
- case submitDocumentsError
- case verifySMS
- case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
}
public struct EventMetadata : Swift.Codable {
public var accountNumberMask: Swift.String?
@@ -444,45 +291,87 @@ public struct EventMetadata : Swift.Codable {
public var timestamp: Foundation.Date
public var viewName: LinkKit.ViewName?
public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
+public struct Plaid {
+ public enum CreateError : Swift.Error {
+ case configurationError(LinkKit.ConfigurationError)
+ }
+ public static func create(_ linkTokenConfiguration: LinkKit.LinkTokenConfiguration) -> Swift.Result
+ public static let version: Swift.String
+}
+public enum AuthErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case productNotReady
+ case verificationExpired
+ case unknown(Swift.String)
+ public var description: Swift.String {
+ get
+ }
+}
+public enum Environment : Swift.CustomStringConvertible {
+ case production
+ case development
+ case sandbox
+ public var description: Swift.String {
+ get
+ }
+ public static func == (a: LinkKit.Environment, b: LinkKit.Environment) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public var hashValue: Swift.Int {
+ get
+ }
+}
+public struct ExitError : Swift.Error, Swift.Codable {
+ public var errorCode: LinkKit.ExitErrorCode
+ public var errorMessage: Swift.String
+ public var displayMessage: Swift.String?
+ public var errorJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
public enum MFAType : Swift.CustomStringConvertible, Swift.Codable {
case code
case device
case questions
case selections
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
public static func == (a: LinkKit.MFAType, b: LinkKit.MFAType) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
-public enum PresentationMethod {
- case viewController(UIKit.UIViewController)
- case custom(LinkKit.PresentationHandler, _: LinkKit.DismissalHandler = { $0.presentingViewController?.dismiss(animated: true, completion: nil) })
+@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class EmbeddedSearchAndSelectView : UIKit.UIView {
+ @available(*, unavailable)
+ @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect)
+ @objc deinit
}
-public enum ExitErrorCode : Swift.Codable {
- case apiError(LinkKit.ApiErrorCode)
- case authError(LinkKit.AuthErrorCode)
- case assetReportError(LinkKit.AssetReportErrorCode)
- case `internal`(Swift.String)
- case institutionError(LinkKit.InstitutionErrorCode)
- case itemError(LinkKit.ItemErrorCode)
- case invalidInput(LinkKit.InvalidInputErrorCode)
- case invalidRequest(LinkKit.InvalidRequestErrorCode)
- case rateLimitExceeded(LinkKit.RateLimitErrorCode)
- case unknown(type: Swift.String, code: Swift.String)
- public init(from decoder: Swift.Decoder) throws
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegate {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didUnhighlightItemAt indexPath: Foundation.IndexPath)
+}
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDataSource {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
+}
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegateFlowLayout {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, layout collectionViewLayout: UIKit.UICollectionViewLayout, sizeForItemAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGSize
+}
+public enum InstitutionErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case institutionDown
+ case institutionNotResponding
+ case institutionNotAvailable
+ case institutionNoLongerSupported
+ case unknown(Swift.String)
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
}
public enum InvalidRequestErrorCode : Swift.Error, Swift.CustomStringConvertible {
case missingFields
@@ -497,42 +386,6 @@ public enum InvalidRequestErrorCode : Swift.Error, Swift.CustomStringConvertible
get
}
}
-public enum InvalidInputErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case invalidApiKeys
- case unauthorizedEnvironment
- case invalidAccessToken
- case invalidPublicToken
- case invalidProduct
- case invalidAccountId
- case invalidInstitution
- case tooManyVerificationAttempts
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-public enum RateLimitErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case accountsLimit
- case additionLimit
- case authLimit
- case identityLimit
- case incomeLimit
- case itemGetLimit
- case rateLimit
- case transactionsLimit
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-public enum ApiErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case internalServerError
- case plannedMaintenance
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
public enum ItemErrorCode : Swift.Error, Swift.CustomStringConvertible {
case insufficientCredentials
case invalidCredentials
@@ -558,13 +411,112 @@ public enum ItemErrorCode : Swift.Error, Swift.CustomStringConvertible {
get
}
}
-public enum AuthErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case productNotReady
- case verificationExpired
+public struct LinkEvent : Swift.Codable {
+ public var eventName: LinkKit.EventName
+ public var metadata: LinkKit.EventMetadata
+ public init(from decoder: any Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
+}
+public enum Product : Swift.CustomStringConvertible, Swift.CaseIterable {
+ case assets
+ case auth
+ case depositSwitch
+ case identity
+ case income
+ case investments
+ case liabilities
+ case liabilitiesReport
+ case paymentInitiation
+ case transactions
+ public var description: Swift.String {
+ get
+ }
+ public static func == (a: LinkKit.Product, b: LinkKit.Product) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public typealias AllCases = [LinkKit.Product]
+ public static var allCases: [LinkKit.Product] {
+ get
+ }
+ public var hashValue: Swift.Int {
+ get
+ }
+}
+public typealias PublicKey = Swift.String
+public typealias PublicToken = Swift.String
+public typealias PaymentToken = Swift.String
+public typealias DepositSwitchToken = Swift.String
+public typealias Language = Swift.String
+public typealias CountryCode = Swift.String
+public typealias PresentationHandler = (UIKit.UIViewController) -> Swift.Void
+public typealias DismissalHandler = (UIKit.UIViewController) -> Swift.Void
+public typealias OnSuccessHandler = (LinkKit.LinkSuccess) -> Swift.Void
+public typealias OnExitHandler = (LinkKit.LinkExit) -> Swift.Void
+public typealias OnEventHandler = (LinkKit.LinkEvent) -> Swift.Void
+public typealias RawJSONMetadata = Swift.String
+public typealias InstitutionID = Swift.String
+public typealias AccountID = Swift.String
+public typealias AccountMask = Swift.String
+public struct LinkTokenConfiguration {
+ public let token: Swift.String
+ public var onSuccess: LinkKit.OnSuccessHandler
+ public var onExit: (LinkKit.LinkExit) -> Swift.Void
+ public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
+ public var noLoadingState: Swift.Bool
+ public init(token: Swift.String, onSuccess: @escaping LinkKit.OnSuccessHandler)
+}
+public enum ViewName : Swift.CustomStringConvertible, Swift.Codable {
+ case acceptTOS
+ case connected
+ case consent
+ case credential
+ case dataTransparency
+ case dataTransparencyConsent
+ case documentaryVerification
+ case error
+ case exit
+ case kycCheck
+ case loading
+ case matchedConsent
+ case matchedCredential
+ case matchedMFA
+ case mfa
+ case numbers
+ case numbersSelectInstitution
+ case oauth
+ case recaptcha
+ case riskCheck
+ case screening
+ case selectAccount
+ case selectAuthType
+ case submitPhone
+ case verifyPhone
+ case selectSavedInstitution
+ case selectSavedAccount
+ case selectBrand
+ case selectInstitution
+ case selfieCheck
+ case uploadDocuments
+ case submitDocuments
+ case submitDocumentsSuccess
+ case submitDocumentsError
+ case verifySMS
+ case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
+}
+public enum VerificationStatus : Swift.CustomStringConvertible, Swift.Codable {
+ case pendingAutomaticVerification
+ case pendingManualVerification
+ case manuallyVerified
case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
+ public func encode(to encoder: any Swift.Encoder) throws
}
public enum AssetReportErrorCode : Swift.Error, Swift.CustomStringConvertible {
case productNotEnabled
@@ -579,36 +531,8 @@ public enum AssetReportErrorCode : Swift.Error, Swift.CustomStringConvertible {
get
}
}
-public enum InstitutionErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case institutionDown
- case institutionNotResponding
- case institutionNotAvailable
- case institutionNoLongerSupported
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class EmbeddedSearchAndSelectView : UIKit.UIView {
- @available(*, unavailable)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegate {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didUnhighlightItemAt indexPath: Foundation.IndexPath)
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDataSource {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegateFlowLayout {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, layout collectionViewLayout: UIKit.UICollectionViewLayout, sizeForItemAt indexPath: Foundation.IndexPath) -> CoreGraphics.CGSize
-}
@_inheritsConvenienceInitializers @objc public class PLKPlaid : ObjectiveC.NSObject {
- @objc public static func createWithLinkTokenConfiguration(_ linkTokenConfiguration: LinkKit.PLKLinkTokenConfiguration, error: Foundation.NSErrorPointer) -> LinkKit.PLKHandler?
- @objc public static func createWithLinkPublicKeyConfiguration(_ linkPublicKeyConfiguration: LinkKit.PLKLinkPublicKeyConfiguration, error: Foundation.NSErrorPointer) -> LinkKit.PLKHandler?
+ @objc public static func createWithLinkTokenConfiguration(_ linkTokenConfiguration: LinkKit.PLKLinkTokenConfiguration, error: Foundation.NSErrorPointer) -> (any LinkKit.PLKHandler)?
@objc public static var sdkVersion: Swift.String {
@objc get
}
@@ -630,6 +554,15 @@ extension LinkKit.LinkEvent {
get
}
}
+public struct Account : Swift.Codable {
+ public let id: LinkKit.AccountID
+ public let name: Swift.String
+ public let mask: LinkKit.AccountMask?
+ public let subtype: LinkKit.AccountSubtype
+ public let verificationStatus: LinkKit.VerificationStatus?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
extension LinkKit.AccountSubtype {
public var description: Swift.String {
get
@@ -660,6 +593,25 @@ extension LinkKit.AccountSubtype.Investment {
get
}
}
+public protocol Handler {
+ func open(presentUsing method: LinkKit.PresentationMethod)
+ func createEmbeddedView(presentUsing: LinkKit.PresentationMethod) -> UIKit.UIView
+ func resumeAfterTermination(from redirectUri: Foundation.URL)
+}
+public enum InvalidInputErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case invalidApiKeys
+ case unauthorizedEnvironment
+ case invalidAccessToken
+ case invalidPublicToken
+ case invalidProduct
+ case invalidAccountId
+ case invalidInstitution
+ case tooManyVerificationAttempts
+ case unknown(Swift.String)
+ public var description: Swift.String {
+ get
+ }
+}
extension LinkKit.AccountSubtype : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Other : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Credit : Swift.CustomStringConvertible {}
@@ -668,7 +620,7 @@ extension LinkKit.AccountSubtype.Depository : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Investment : Swift.CustomStringConvertible {}
extension LinkKit.Environment : Swift.Equatable {}
extension LinkKit.Environment : Swift.Hashable {}
-extension LinkKit.Product : Swift.Equatable {}
-extension LinkKit.Product : Swift.Hashable {}
extension LinkKit.MFAType : Swift.Equatable {}
extension LinkKit.MFAType : Swift.Hashable {}
+extension LinkKit.Product : Swift.Equatable {}
+extension LinkKit.Product : Swift.Hashable {}
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc
index f6cd82f6..72d4aa47 100644
Binary files a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc and b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc differ
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface
index 79755993..ecdc9911 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface
@@ -1,6 +1,6 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
-// swift-module-flags: -target arm64-apple-ios14.2-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Osize -module-name LinkKit
+// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
+// swift-module-flags: -target arm64-apple-ios14.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Osize -module-name LinkKit
// swift-module-flags-ignorable: -enable-bare-slash-regex
import AuthenticationServices
import Foundation
@@ -10,96 +10,121 @@ import Swift
import UIKit
import WebKit
import _Concurrency
+import _StringProcessing
+import _SwiftConcurrencyShims
import os
+public enum PresentationMethod {
+ case viewController(UIKit.UIViewController)
+ case custom(LinkKit.PresentationHandler, _: LinkKit.DismissalHandler = { $0.presentingViewController?.dismiss(animated: true, completion: nil) })
+}
+public struct ExitMetadata : Swift.Codable {
+ public var status: LinkKit.ExitStatus?
+ public var institution: LinkKit.Institution?
+ public var linkSessionID: Swift.String?
+ public var requestID: Swift.String?
+ public var metadataJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
+public enum ExitErrorCode : Swift.Codable {
+ case apiError(LinkKit.ApiErrorCode)
+ case authError(LinkKit.AuthErrorCode)
+ case assetReportError(LinkKit.AssetReportErrorCode)
+ case `internal`(Swift.String)
+ case institutionError(LinkKit.InstitutionErrorCode)
+ case itemError(LinkKit.ItemErrorCode)
+ case invalidInput(LinkKit.InvalidInputErrorCode)
+ case invalidRequest(LinkKit.InvalidRequestErrorCode)
+ case rateLimitExceeded(LinkKit.RateLimitErrorCode)
+ case unknown(type: Swift.String, code: Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
+}
extension Foundation.UUID {
public var linkuuidString: Swift.String {
get
}
}
-public struct Plaid {
- public enum CreateError : Swift.Error {
- case configurationError(LinkKit.ConfigurationError)
- }
- @available(*, deprecated, message: "This function will be removed in LinkKit V5.0.0. Use `create(_ linkTokenConfiguration: LinkTokenConfiguration)` instead.")
- public static func create(_ linkPublicKeyConfiguration: LinkKit.LinkPublicKeyConfiguration) -> Swift.Result
- public static func create(_ linkTokenConfiguration: LinkKit.LinkTokenConfiguration) -> Swift.Result
- public static let version: Swift.String
+public struct LinkSuccess : Swift.Codable {
+ public var publicToken: Swift.String
+ public var metadata: LinkKit.SuccessMetadata
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-@available(*, deprecated, message: "HandlerContinueError is deprecated, use Handler.continue(from:) instead of Handler.continueFrom(redirectUri:)")
-public enum HandlerContinueError : Swift.Error {
- case invalidRedirect(Swift.String)
- case `internal`
+public enum EventName : Swift.CustomStringConvertible, Swift.Codable {
+ case bankIncomeInsightsCompleted
+ case closeOAuth
+ case error
+ case exit
+ case failOAuth
+ case handoff
+ case identityVerificationStartStep
+ case identityVerificationPassStep
+ case identityVerificationFailStep
+ case identityVerificationPendingReviewStep
+ case identityVerificationCreateSession
+ case identityVerificationResumeSession
+ case identityVerificationPassSession
+ case identityVerificationFailSession
+ case identityVerificationPendingReviewSession
+ case identityVerificationOpenUI
+ case identityVerificationResumeUI
+ case identityVerificationCloseUI
+ case matchedSelectInstitution
+ case matchedSelectVerifyMethod
+ case open
+ case openMyPlaid
+ case openOAuth
+ case searchInstitution
+ case selectDegradedInstitution
+ case selectFilteredInstitution
+ case selectDownInstitution
+ case selectInstitution
+ case selectBrand
+ case selectAuthType
+ case submitAccountNumber
+ case submitDocuments
+ case submitDocumentsSuccess
+ case submitDocumentsError
+ case submitRoutingNumber
+ case submitCredentials
+ case submitMFA
+ case transitionView
+ case viewDataTypes
+ case submitPhone
+ case skipSubmitPhone
+ case verifyPhone
+ case connectNewInstitution
+ case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public protocol Handler {
- func open(presentUsing method: LinkKit.PresentationMethod)
- @available(*, deprecated, message: "open with options is deprecated")
- func open(presentUsing method: LinkKit.PresentationMethod, _ options: LinkKit.OpenOptions)
- func createEmbeddedView(presentUsing: LinkKit.PresentationMethod) -> Swift.Result
- @available(*, deprecated, message: "`continueFrom(redirectUri:) -> HandlerContinueError?` is deprecated. Use `continue(from:) -> Void`")
- func continueFrom(redirectUri: Foundation.URL) -> LinkKit.HandlerContinueError?
- @available(*, deprecated, message: "This function will be removed in LinkKit V5.0.0. This function should only be used if your app crashed or was killed during an out-of-process OAuth flow. Use `resumeAfterTermination(from redirectUri: URL)`")
- func `continue`(from redirectUri: Foundation.URL)
- func resumeAfterTermination(from redirectUri: Foundation.URL)
+public struct Institution : Swift.Codable {
+ public var id: LinkKit.InstitutionID
+ public var name: Swift.String
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public struct LinkTokenConfiguration {
- public let token: Swift.String
- public var onSuccess: LinkKit.OnSuccessHandler
- public var onExit: (LinkKit.LinkExit) -> Swift.Void
- public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
- public var noLoadingState: Swift.Bool
- public init(token: Swift.String, onSuccess: @escaping LinkKit.OnSuccessHandler)
+public enum ConfigurationError : Swift.Error {
+ case malformedClientID(message: Swift.String)
+ case missingAuthorization(message: Swift.String)
+ case noProduct(message: Swift.String)
+ case invalidOptionValue(message: Swift.String)
+ case invalidOptionCombination(message: Swift.String)
+ case invalidToken(message: Swift.String)
}
-public struct OAuthNonceConfiguration {
- public let nonce: LinkKit.OAuthNonce
- public let redirectUri: Foundation.URL
- public init(nonce: Swift.String, redirectUri: Foundation.URL)
-}
-public struct LinkPublicKeyConfiguration {
- public enum Token {
- @available(*, deprecated, message: "publicKey is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case payment(LinkKit.PaymentToken, LinkKit.PublicKey)
- @available(*, deprecated, message: "publicToken is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case depositSwitchToken(LinkKit.DepositSwitchToken, LinkKit.PublicKey)
- @available(*, deprecated, message: "publicKey is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case publicKey(LinkKit.PublicKey)
- @available(*, deprecated, message: "publicToken is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case publicToken(LinkKit.PublicToken, LinkKit.PublicKey)
- }
- public var clientName: Swift.String
- public var environment: LinkKit.Environment
- public var products: Swift.Set
- public var language: LinkKit.Language
- public var countryCodes: [LinkKit.CountryCode]
- public var token: LinkKit.LinkPublicKeyConfiguration.Token
- public var onSuccess: LinkKit.OnSuccessHandler
- public var onExit: (LinkKit.LinkExit) -> Swift.Void
- public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
- public var webhook: Foundation.URL?
- public var userLegalName: Swift.String?
- public var userEmailAddress: Swift.String?
- public var userPhoneNumber: Swift.String?
- public var linkCustomizationName: Swift.String?
- public var accountSubtypes: [LinkKit.AccountSubtype]
- public var oauthConfiguration: LinkKit.OAuthNonceConfiguration?
- public init(clientName: Swift.String, environment: LinkKit.Environment, products: Swift.Set, language: LinkKit.Language, token: LinkKit.LinkPublicKeyConfiguration.Token, countryCodes: [LinkKit.CountryCode], onSuccess: @escaping LinkKit.OnSuccessHandler)
+public struct LinkExit : Swift.Codable {
+ public var error: LinkKit.ExitError?
+ public var metadata: LinkKit.ExitMetadata
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public typealias PublicKey = Swift.String
-public typealias PublicToken = Swift.String
-public typealias PaymentToken = Swift.String
-public typealias DepositSwitchToken = Swift.String
-public typealias Language = Swift.String
-public typealias CountryCode = Swift.String
-public typealias OAuthNonce = Swift.String
-public typealias PresentationHandler = (UIKit.UIViewController) -> Swift.Void
-public typealias DismissalHandler = (UIKit.UIViewController) -> Swift.Void
-public typealias OnSuccessHandler = (LinkKit.LinkSuccess) -> Swift.Void
-public typealias OnExitHandler = (LinkKit.LinkExit) -> Swift.Void
-public typealias OnEventHandler = (LinkKit.LinkEvent) -> Swift.Void
-public typealias OpenOptions = [Swift.String : Swift.String]
-public typealias RawJSONMetadata = Swift.String
-public typealias InstitutionID = Swift.String
-public typealias AccountID = Swift.String
-public typealias AccountMask = Swift.String
public enum AccountSubtype : Swift.Codable {
case unknown(type: Swift.String, subtype: Swift.String)
case other(LinkKit.AccountSubtype.Other)
@@ -107,7 +132,7 @@ public enum AccountSubtype : Swift.Codable {
case all
case other
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case credit(LinkKit.AccountSubtype.Credit)
public enum Credit : Swift.Codable {
@@ -115,7 +140,7 @@ public enum AccountSubtype : Swift.Codable {
case creditCard
case paypal
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case loan(LinkKit.AccountSubtype.Loan)
public enum Loan : Swift.Codable {
@@ -132,7 +157,7 @@ public enum AccountSubtype : Swift.Codable {
case overdraft
case student
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case depository(LinkKit.AccountSubtype.Depository)
public enum Depository : Swift.Codable {
@@ -147,7 +172,7 @@ public enum AccountSubtype : Swift.Codable {
case prepaid
case savings
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case investment(LinkKit.AccountSubtype.Investment)
public enum Investment : Swift.Codable {
@@ -197,101 +222,40 @@ public enum AccountSubtype : Swift.Codable {
case unknown(Swift.String)
case utma
case variableAnnuity
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
- public init(from decoder: Swift.Decoder) throws
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct LinkSuccess : Swift.Codable {
- public var publicToken: Swift.String
- public var metadata: LinkKit.SuccessMetadata
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct LinkExit : Swift.Codable {
- public var error: LinkKit.ExitError?
- public var metadata: LinkKit.ExitMetadata
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct LinkEvent : Swift.Codable {
- public var eventName: LinkKit.EventName
- public var metadata: LinkKit.EventMetadata
- public init(from decoder: Swift.Decoder) throws
- public func encode(to encoder: Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public enum ConfigurationError : Swift.Error {
- case malformedClientID(message: Swift.String)
- case missingAuthorization(message: Swift.String)
- case noProduct(message: Swift.String)
- case invalidOptionValue(message: Swift.String)
- case invalidOptionCombination(message: Swift.String)
- case invalidToken(message: Swift.String)
-}
-public enum Environment : Swift.CustomStringConvertible {
- case production
- case development
- case sandbox
- public var description: Swift.String {
- get
- }
- public static func == (a: LinkKit.Environment, b: LinkKit.Environment) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
+public struct SuccessMetadata : Swift.Codable {
+ public var institution: LinkKit.Institution
+ public var accounts: [LinkKit.Account]
+ public var linkSessionID: Swift.String
+ public var metadataJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public enum Product : Swift.CustomStringConvertible, Swift.CaseIterable {
- case assets
- case auth
- case depositSwitch
- case identity
- case income
- case investments
- case liabilities
- case liabilitiesReport
- case paymentInitiation
- case transactions
+public enum RateLimitErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case accountsLimit
+ case additionLimit
+ case authLimit
+ case identityLimit
+ case incomeLimit
+ case itemGetLimit
+ case rateLimit
+ case transactionsLimit
+ case unknown(Swift.String)
public var description: Swift.String {
get
}
- public static func == (a: LinkKit.Product, b: LinkKit.Product) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public typealias AllCases = [LinkKit.Product]
- public static var allCases: [LinkKit.Product] {
- get
- }
- public var hashValue: Swift.Int {
- get
- }
}
-public enum VerificationStatus : Swift.CustomStringConvertible, Swift.Codable {
- case pendingAutomaticVerification
- case pendingManualVerification
- case manuallyVerified
+public enum ApiErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case internalServerError
+ case plannedMaintenance
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct Account : Swift.Codable {
- public let id: LinkKit.AccountID
- public let name: Swift.String
- public let mask: LinkKit.AccountMask?
- public let subtype: LinkKit.AccountSubtype
- public let verificationStatus: LinkKit.VerificationStatus?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct SuccessMetadata : Swift.Codable {
- public var institution: LinkKit.Institution
- public var accounts: [LinkKit.Account]
- public var linkSessionID: Swift.String
- public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
}
public enum ExitStatus : Swift.CustomStringConvertible, Swift.Codable {
case requiresQuestions
@@ -303,128 +267,11 @@ public enum ExitStatus : Swift.CustomStringConvertible, Swift.Codable {
case requiresAccountSelection
case continueToThirdParty
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
- public var description: Swift.String {
- get
- }
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct ExitError : Swift.Error, Swift.Codable {
- public var errorCode: LinkKit.ExitErrorCode
- public var errorMessage: Swift.String
- public var displayMessage: Swift.String?
- public var errorJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct Institution : Swift.Codable {
- public var id: LinkKit.InstitutionID
- public var name: Swift.String
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct ExitMetadata : Swift.Codable {
- public var status: LinkKit.ExitStatus?
- public var institution: LinkKit.Institution?
- public var linkSessionID: Swift.String?
- public var requestID: Swift.String?
- public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public enum EventName : Swift.CustomStringConvertible, Swift.Codable {
- case bankIncomeInsightsCompleted
- case closeOAuth
- case error
- case exit
- case failOAuth
- case handoff
- case identityVerificationStartStep
- case identityVerificationPassStep
- case identityVerificationFailStep
- case identityVerificationPendingReviewStep
- case identityVerificationCreateSession
- case identityVerificationResumeSession
- case identityVerificationPassSession
- case identityVerificationFailSession
- case identityVerificationPendingReviewSession
- case identityVerificationOpenUI
- case identityVerificationResumeUI
- case identityVerificationCloseUI
- case matchedSelectInstitution
- case matchedSelectVerifyMethod
- case open
- case openMyPlaid
- case openOAuth
- case searchInstitution
- case selectDegradedInstitution
- case selectFilteredInstitution
- case selectDownInstitution
- case selectInstitution
- case selectBrand
- case selectAuthType
- case submitAccountNumber
- case submitDocuments
- case submitDocumentsSuccess
- case submitDocumentsError
- case submitRoutingNumber
- case submitCredentials
- case submitMFA
- case transitionView
- case viewDataTypes
- case submitPhone
- case skipSubmitPhone
- case verifyPhone
- case connectNewInstitution
- case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
- public var description: Swift.String {
- get
- }
- public func encode(to encoder: Swift.Encoder) throws
-}
-public enum ViewName : Swift.CustomStringConvertible, Swift.Codable {
- case acceptTOS
- case connected
- case consent
- case credential
- case dataTransparency
- case dataTransparencyConsent
- case documentaryVerification
- case error
- case exit
- case kycCheck
- case loading
- case matchedConsent
- case matchedCredential
- case matchedMFA
- case mfa
- case numbers
- case numbersSelectInstitution
- case oauth
- case recaptcha
- case riskCheck
- case screening
- case selectAccount
- case selectAuthType
- case submitPhone
- case verifyPhone
- case selectSavedInstitution
- case selectSavedAccount
- case selectBrand
- case selectInstitution
- case selfieCheck
- case uploadDocuments
- case submitDocuments
- case submitDocumentsSuccess
- case submitDocumentsError
- case verifySMS
- case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
}
public struct EventMetadata : Swift.Codable {
public var accountNumberMask: Swift.String?
@@ -444,45 +291,87 @@ public struct EventMetadata : Swift.Codable {
public var timestamp: Foundation.Date
public var viewName: LinkKit.ViewName?
public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
+public struct Plaid {
+ public enum CreateError : Swift.Error {
+ case configurationError(LinkKit.ConfigurationError)
+ }
+ public static func create(_ linkTokenConfiguration: LinkKit.LinkTokenConfiguration) -> Swift.Result
+ public static let version: Swift.String
+}
+public enum AuthErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case productNotReady
+ case verificationExpired
+ case unknown(Swift.String)
+ public var description: Swift.String {
+ get
+ }
+}
+public enum Environment : Swift.CustomStringConvertible {
+ case production
+ case development
+ case sandbox
+ public var description: Swift.String {
+ get
+ }
+ public static func == (a: LinkKit.Environment, b: LinkKit.Environment) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public var hashValue: Swift.Int {
+ get
+ }
+}
+public struct ExitError : Swift.Error, Swift.Codable {
+ public var errorCode: LinkKit.ExitErrorCode
+ public var errorMessage: Swift.String
+ public var displayMessage: Swift.String?
+ public var errorJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
public enum MFAType : Swift.CustomStringConvertible, Swift.Codable {
case code
case device
case questions
case selections
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
public static func == (a: LinkKit.MFAType, b: LinkKit.MFAType) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
-public enum PresentationMethod {
- case viewController(UIKit.UIViewController)
- case custom(LinkKit.PresentationHandler, _: LinkKit.DismissalHandler = { $0.presentingViewController?.dismiss(animated: true, completion: nil) })
+@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class EmbeddedSearchAndSelectView : UIKit.UIView {
+ @available(*, unavailable)
+ @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect)
+ @objc deinit
}
-public enum ExitErrorCode : Swift.Codable {
- case apiError(LinkKit.ApiErrorCode)
- case authError(LinkKit.AuthErrorCode)
- case assetReportError(LinkKit.AssetReportErrorCode)
- case `internal`(Swift.String)
- case institutionError(LinkKit.InstitutionErrorCode)
- case itemError(LinkKit.ItemErrorCode)
- case invalidInput(LinkKit.InvalidInputErrorCode)
- case invalidRequest(LinkKit.InvalidRequestErrorCode)
- case rateLimitExceeded(LinkKit.RateLimitErrorCode)
- case unknown(type: Swift.String, code: Swift.String)
- public init(from decoder: Swift.Decoder) throws
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegate {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didUnhighlightItemAt indexPath: Foundation.IndexPath)
+}
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDataSource {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
+}
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegateFlowLayout {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, layout collectionViewLayout: UIKit.UICollectionViewLayout, sizeForItemAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGSize
+}
+public enum InstitutionErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case institutionDown
+ case institutionNotResponding
+ case institutionNotAvailable
+ case institutionNoLongerSupported
+ case unknown(Swift.String)
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
}
public enum InvalidRequestErrorCode : Swift.Error, Swift.CustomStringConvertible {
case missingFields
@@ -497,42 +386,6 @@ public enum InvalidRequestErrorCode : Swift.Error, Swift.CustomStringConvertible
get
}
}
-public enum InvalidInputErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case invalidApiKeys
- case unauthorizedEnvironment
- case invalidAccessToken
- case invalidPublicToken
- case invalidProduct
- case invalidAccountId
- case invalidInstitution
- case tooManyVerificationAttempts
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-public enum RateLimitErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case accountsLimit
- case additionLimit
- case authLimit
- case identityLimit
- case incomeLimit
- case itemGetLimit
- case rateLimit
- case transactionsLimit
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-public enum ApiErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case internalServerError
- case plannedMaintenance
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
public enum ItemErrorCode : Swift.Error, Swift.CustomStringConvertible {
case insufficientCredentials
case invalidCredentials
@@ -558,13 +411,112 @@ public enum ItemErrorCode : Swift.Error, Swift.CustomStringConvertible {
get
}
}
-public enum AuthErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case productNotReady
- case verificationExpired
+public struct LinkEvent : Swift.Codable {
+ public var eventName: LinkKit.EventName
+ public var metadata: LinkKit.EventMetadata
+ public init(from decoder: any Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
+}
+public enum Product : Swift.CustomStringConvertible, Swift.CaseIterable {
+ case assets
+ case auth
+ case depositSwitch
+ case identity
+ case income
+ case investments
+ case liabilities
+ case liabilitiesReport
+ case paymentInitiation
+ case transactions
+ public var description: Swift.String {
+ get
+ }
+ public static func == (a: LinkKit.Product, b: LinkKit.Product) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public typealias AllCases = [LinkKit.Product]
+ public static var allCases: [LinkKit.Product] {
+ get
+ }
+ public var hashValue: Swift.Int {
+ get
+ }
+}
+public typealias PublicKey = Swift.String
+public typealias PublicToken = Swift.String
+public typealias PaymentToken = Swift.String
+public typealias DepositSwitchToken = Swift.String
+public typealias Language = Swift.String
+public typealias CountryCode = Swift.String
+public typealias PresentationHandler = (UIKit.UIViewController) -> Swift.Void
+public typealias DismissalHandler = (UIKit.UIViewController) -> Swift.Void
+public typealias OnSuccessHandler = (LinkKit.LinkSuccess) -> Swift.Void
+public typealias OnExitHandler = (LinkKit.LinkExit) -> Swift.Void
+public typealias OnEventHandler = (LinkKit.LinkEvent) -> Swift.Void
+public typealias RawJSONMetadata = Swift.String
+public typealias InstitutionID = Swift.String
+public typealias AccountID = Swift.String
+public typealias AccountMask = Swift.String
+public struct LinkTokenConfiguration {
+ public let token: Swift.String
+ public var onSuccess: LinkKit.OnSuccessHandler
+ public var onExit: (LinkKit.LinkExit) -> Swift.Void
+ public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
+ public var noLoadingState: Swift.Bool
+ public init(token: Swift.String, onSuccess: @escaping LinkKit.OnSuccessHandler)
+}
+public enum ViewName : Swift.CustomStringConvertible, Swift.Codable {
+ case acceptTOS
+ case connected
+ case consent
+ case credential
+ case dataTransparency
+ case dataTransparencyConsent
+ case documentaryVerification
+ case error
+ case exit
+ case kycCheck
+ case loading
+ case matchedConsent
+ case matchedCredential
+ case matchedMFA
+ case mfa
+ case numbers
+ case numbersSelectInstitution
+ case oauth
+ case recaptcha
+ case riskCheck
+ case screening
+ case selectAccount
+ case selectAuthType
+ case submitPhone
+ case verifyPhone
+ case selectSavedInstitution
+ case selectSavedAccount
+ case selectBrand
+ case selectInstitution
+ case selfieCheck
+ case uploadDocuments
+ case submitDocuments
+ case submitDocumentsSuccess
+ case submitDocumentsError
+ case verifySMS
+ case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
+}
+public enum VerificationStatus : Swift.CustomStringConvertible, Swift.Codable {
+ case pendingAutomaticVerification
+ case pendingManualVerification
+ case manuallyVerified
case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
+ public func encode(to encoder: any Swift.Encoder) throws
}
public enum AssetReportErrorCode : Swift.Error, Swift.CustomStringConvertible {
case productNotEnabled
@@ -579,36 +531,8 @@ public enum AssetReportErrorCode : Swift.Error, Swift.CustomStringConvertible {
get
}
}
-public enum InstitutionErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case institutionDown
- case institutionNotResponding
- case institutionNotAvailable
- case institutionNoLongerSupported
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class EmbeddedSearchAndSelectView : UIKit.UIView {
- @available(*, unavailable)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegate {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didUnhighlightItemAt indexPath: Foundation.IndexPath)
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDataSource {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegateFlowLayout {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, layout collectionViewLayout: UIKit.UICollectionViewLayout, sizeForItemAt indexPath: Foundation.IndexPath) -> CoreGraphics.CGSize
-}
@_inheritsConvenienceInitializers @objc public class PLKPlaid : ObjectiveC.NSObject {
- @objc public static func createWithLinkTokenConfiguration(_ linkTokenConfiguration: LinkKit.PLKLinkTokenConfiguration, error: Foundation.NSErrorPointer) -> LinkKit.PLKHandler?
- @objc public static func createWithLinkPublicKeyConfiguration(_ linkPublicKeyConfiguration: LinkKit.PLKLinkPublicKeyConfiguration, error: Foundation.NSErrorPointer) -> LinkKit.PLKHandler?
+ @objc public static func createWithLinkTokenConfiguration(_ linkTokenConfiguration: LinkKit.PLKLinkTokenConfiguration, error: Foundation.NSErrorPointer) -> (any LinkKit.PLKHandler)?
@objc public static var sdkVersion: Swift.String {
@objc get
}
@@ -630,6 +554,15 @@ extension LinkKit.LinkEvent {
get
}
}
+public struct Account : Swift.Codable {
+ public let id: LinkKit.AccountID
+ public let name: Swift.String
+ public let mask: LinkKit.AccountMask?
+ public let subtype: LinkKit.AccountSubtype
+ public let verificationStatus: LinkKit.VerificationStatus?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
extension LinkKit.AccountSubtype {
public var description: Swift.String {
get
@@ -660,6 +593,25 @@ extension LinkKit.AccountSubtype.Investment {
get
}
}
+public protocol Handler {
+ func open(presentUsing method: LinkKit.PresentationMethod)
+ func createEmbeddedView(presentUsing: LinkKit.PresentationMethod) -> UIKit.UIView
+ func resumeAfterTermination(from redirectUri: Foundation.URL)
+}
+public enum InvalidInputErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case invalidApiKeys
+ case unauthorizedEnvironment
+ case invalidAccessToken
+ case invalidPublicToken
+ case invalidProduct
+ case invalidAccountId
+ case invalidInstitution
+ case tooManyVerificationAttempts
+ case unknown(Swift.String)
+ public var description: Swift.String {
+ get
+ }
+}
extension LinkKit.AccountSubtype : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Other : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Credit : Swift.CustomStringConvertible {}
@@ -668,7 +620,7 @@ extension LinkKit.AccountSubtype.Depository : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Investment : Swift.CustomStringConvertible {}
extension LinkKit.Environment : Swift.Equatable {}
extension LinkKit.Environment : Swift.Hashable {}
-extension LinkKit.Product : Swift.Equatable {}
-extension LinkKit.Product : Swift.Hashable {}
extension LinkKit.MFAType : Swift.Equatable {}
extension LinkKit.MFAType : Swift.Hashable {}
+extension LinkKit.Product : Swift.Equatable {}
+extension LinkKit.Product : Swift.Hashable {}
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftmodule b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftmodule
index 8f82ba23..6e50a1ec 100644
Binary files a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftmodule and b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftmodule differ
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.abi.json b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.abi.json
index c69ff71d..d1d77603 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.abi.json
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.abi.json
@@ -11,768 +11,786 @@
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "PlaidLinkViewController",
- "printedName": "PlaidLinkViewController",
+ "name": "PresentationMethod",
+ "printedName": "PresentationMethod",
"children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(log:)",
+ "kind": "Var",
+ "name": "viewController",
+ "printedName": "viewController",
"children": [
{
- "kind": "TypeNominal",
- "name": "PlaidLinkViewController",
- "printedName": "LinkKit.PlaidLinkViewController",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "hasDefaultArg": true,
- "usr": "s:3LogAAV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PresentationMethod.Type) -> (UIKit.UIViewController) -> LinkKit.PresentationMethod",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> LinkKit.PresentationMethod",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PresentationMethod.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit05PlaidA14ViewControllerC3logAC3LogAEV_tcfc",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC3logAC3LogAEV_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18PresentationMethodO14viewControlleryACSo06UIViewF0CcACmF",
+ "mangledName": "$s7LinkKit18PresentationMethodO14viewControlleryACSo06UIViewF0CcACmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Var",
+ "name": "custom",
+ "printedName": "custom",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PlaidLinkViewController?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PresentationMethod.Type) -> (@escaping (UIKit.UIViewController) -> (), @escaping (UIKit.UIViewController) -> ()) -> LinkKit.PresentationMethod",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(@escaping (UIKit.UIViewController) -> (), @escaping (UIKit.UIViewController) -> ()) -> LinkKit.PresentationMethod",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "((UIKit.UIViewController) -> (), (UIKit.UIViewController) -> ())",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "PlaidLinkViewController",
- "printedName": "LinkKit.PlaidLinkViewController",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
+ "name": "Metatype",
+ "printedName": "LinkKit.PresentationMethod.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18PresentationMethodO6customyACySo16UIViewControllerCc_yAFctcACmF",
+ "mangledName": "$s7LinkKit18PresentationMethodO6customyACySo16UIViewControllerCc_yAFctcACmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
- },
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit18PresentationMethodO",
+ "mangledName": "$s7LinkKit18PresentationMethodO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ExitMetadata",
+ "printedName": "ExitMetadata",
+ "children": [
{
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "kind": "Var",
+ "name": "status",
+ "printedName": "status",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC11viewDidLoadyyF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
+ "HasInitialValue",
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "transitionTo",
- "printedName": "transitionTo(pane:)",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit05PlaidA14ViewControllerC12transitionTo4paneySo06UIViewE0C_tF",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC12transitionTo4paneySo06UIViewE0C_tF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "log",
- "printedName": "log",
- "children": [
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
{
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit05PlaidA14ViewControllerC3log33_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LL3LogAFVvp",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC3log33_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LL3LogAFVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "$__lazy_storage_$_presentedPaneViewController",
- "printedName": "$__lazy_storage_$_presentedPaneViewController",
+ "name": "institution",
+ "printedName": "institution",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "UIKit.UIViewController?",
+ "printedName": "LinkKit.Institution?",
"children": [
{
"kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit05PlaidA14ViewControllerC031$__lazy_storage_$_presentedPanedE033_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LLSo06UIViewE0CSgvp",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC031$__lazy_storage_$_presentedPanedE033_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LLSo06UIViewE0CSgvp",
+ "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvp",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
"HasStorage",
- "Final"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 1,
- "hasStorage": true
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PlaidLinkViewController",
- "printedName": "LinkKit.PlaidLinkViewController",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
- },
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.Institution?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.Institution?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController",
- "mangledName": "$s7LinkKit05PlaidA14ViewControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SearchAndSelectViewController",
- "printedName": "SearchAndSelectViewController",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SearchAndSelectViewController",
- "printedName": "LinkKit.SearchAndSelectViewController",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
{
- "kind": "TypeNominal",
- "name": "SearchAndSelectViewModel",
- "printedName": "Workflow.SearchAndSelectViewModel",
- "usr": "s:8Workflow24SearchAndSelectViewModelC"
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit29SearchAndSelectViewControllerC4withAC8Workflow0cdeF5ModelC_tcfc",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC4withAC8Workflow0cdeF5ModelC_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Var",
+ "name": "linkSessionID",
+ "printedName": "linkSessionID",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.SearchAndSelectViewController?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "SearchAndSelectViewController",
- "printedName": "LinkKit.SearchAndSelectViewController",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC5coderACSgSo7NSCoderC_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC11viewDidLoadyyF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
+ "HasInitialValue",
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tableView",
- "printedName": "tableView(_:didSelectRowAt:)",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
{
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)tableView:didSelectRowAtIndexPath:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC05tableF0_03didE5RowAtySo07UITableF0C_10Foundation9IndexPathVtF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "tableView:didSelectRowAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "numberOfSections",
- "printedName": "numberOfSections(in:)",
+ "kind": "Var",
+ "name": "requestID",
+ "printedName": "requestID",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)numberOfSectionsInTableView:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC16numberOfSections2inSiSo07UITableF0C_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "numberOfSectionsInTableView:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
+ "HasInitialValue",
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tableView",
- "printedName": "tableView(_:numberOfRowsInSection:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)tableView:numberOfRowsInSection:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC05tableF0_21numberOfRowsInSectionSiSo07UITableF0C_SitF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "tableView:numberOfRowsInSection:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tableView",
- "printedName": "tableView(_:cellForRowAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITableViewCell",
- "printedName": "UIKit.UITableViewCell",
- "usr": "c:objc(cs)UITableViewCell"
- },
- {
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)tableView:cellForRowAtIndexPath:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC05tableF0_12cellForRowAtSo07UITableF4CellCSo0mF0C_10Foundation9IndexPathVtF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "tableView:cellForRowAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tableView",
- "printedName": "tableView(_:willDisplay:forRowAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "UITableView",
- "printedName": "UIKit.UITableView",
- "usr": "c:objc(cs)UITableView"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "UITableViewCell",
- "printedName": "UIKit.UITableViewCell",
- "usr": "c:objc(cs)UITableViewCell"
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
{
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)tableView:willDisplayCell:forRowAtIndexPath:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC05tableF0_11willDisplay8forRowAtySo07UITableF0C_So0nF4CellC10Foundation9IndexPathVtF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "tableView:willDisplayCell:forRowAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "metadataJSON",
+ "printedName": "metadataJSON",
"children": [
{
"kind": "TypeNominal",
- "name": "SearchAndSelectViewModel",
- "printedName": "Workflow.SearchAndSelectViewModel",
- "usr": "s:8Workflow24SearchAndSelectViewModelC"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit29SearchAndSelectViewControllerC9viewModel33_66F8CC49042D8C198FF1EBA3FDD66154LL8Workflow0cdefI0Cvp",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC9viewModel33_66F8CC49042D8C198FF1EBA3FDD66154LL8Workflow0cdefI0Cvp",
+ "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
+ "HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvs",
+ "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvM",
+ "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
},
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(style:)",
+ "printedName": "init(status:institution:linkSessionID:requestID:metadataJSON:)",
"children": [
{
"kind": "TypeNominal",
- "name": "SearchAndSelectViewController",
- "printedName": "LinkKit.SearchAndSelectViewController",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController"
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
},
{
"kind": "TypeNominal",
- "name": "Style",
- "printedName": "UIKit.UITableView.Style",
- "usr": "c:@E@UITableViewStyle"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)initWithStyle:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC5styleACSo07UITableF5StyleV_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithStyle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.Institution?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
- "name": "SearchAndSelectViewController",
- "printedName": "LinkKit.SearchAndSelectViewController",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
@@ -786,112 +804,203 @@
"usr": "s:SS"
}
],
+ "hasDefaultArg": true,
"usr": "s:Sq"
},
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
+ "hasDefaultArg": true,
"usr": "s:Sq"
}
],
"declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "usr": "s:7LinkKit12ExitMetadataV6status11institution13linkSessionID07requestI012metadataJSONAcA0C6StatusOSg_AA11InstitutionVSgSSSgA2Otcfc",
+ "mangledName": "$s7LinkKit12ExitMetadataV6status11institution13linkSessionID07requestI012metadataJSONAcA0C6StatusOSg_AA11InstitutionVSgSSSgA2Otcfc",
"moduleName": "LinkKit",
- "overriding": true,
"implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
"init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)SearchAndSelectViewController",
- "mangledName": "$s7LinkKit29SearchAndSelectViewControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UITableViewController",
- "superclassNames": [
- "UIKit.UITableViewController",
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
},
{
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit12ExitMetadataVACycfc",
+ "mangledName": "$s7LinkKit12ExitMetadataVACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
},
{
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit12ExitMetadataV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit12ExitMetadataV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit12ExitMetadataV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit12ExitMetadataV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit12ExitMetadataV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit12ExitMetadataV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKExitMetadata",
+ "printedName": "LinkKit.PLKExitMetadata",
+ "usr": "c:objc(cs)PLKExitMetadata"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvp",
+ "mangledName": "$s7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKExitMetadata",
+ "printedName": "LinkKit.PLKExitMetadata",
+ "usr": "c:objc(cs)PLKExitMetadata"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvg",
+ "mangledName": "$s7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit12ExitMetadataV",
+ "mangledName": "$s7LinkKit12ExitMetadataV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
@@ -902,128 +1011,50 @@
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "ComponentPaneViewModel",
- "printedName": "ComponentPaneViewModel",
+ "name": "ExitErrorCode",
+ "printedName": "ExitErrorCode",
"children": [
{
"kind": "Var",
- "name": "content",
- "printedName": "content",
+ "name": "apiError",
+ "printedName": "apiError",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ComponentPaneViewModel.Type) -> (Threads.NavigationProperties?, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.ApiErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Threads.NavigationProperties?, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "printedName": "(LinkKit.ApiErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(navigation: Threads.NavigationProperties?, content: LinkKit.Component)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Threads.NavigationProperties?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NavigationProperties",
- "printedName": "Threads.NavigationProperties",
- "usr": "s:7Threads20NavigationPropertiesV"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- }
- ]
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ComponentPaneViewModel.Type",
+ "printedName": "LinkKit.ExitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
]
}
@@ -1031,77 +1062,52 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit22ComponentPaneViewModelO7contentyAC7Threads20NavigationPropertiesVSg_AA0C0VtcACmF",
- "mangledName": "$s7LinkKit22ComponentPaneViewModelO7contentyAC7Threads20NavigationPropertiesVSg_AA0C0VtcACmF",
+ "usr": "s:7LinkKit13ExitErrorCodeO03apiD0yAcA03ApidE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD0yAcA03ApidE0OcACmF",
"moduleName": "LinkKit",
- "fixedbinaryorder": 0
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "fixedFooter",
- "printedName": "fixedFooter",
+ "name": "authError",
+ "printedName": "authError",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ComponentPaneViewModel.Type) -> (Threads.NavigationProperties?, LinkKit.Component, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.AuthErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Threads.NavigationProperties?, LinkKit.Component, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "printedName": "(LinkKit.AuthErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(navigation: Threads.NavigationProperties?, content: LinkKit.Component, footer: LinkKit.Component)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Threads.NavigationProperties?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NavigationProperties",
- "printedName": "Threads.NavigationProperties",
- "usr": "s:7Threads20NavigationPropertiesV"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- }
- ]
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ComponentPaneViewModel.Type",
+ "printedName": "LinkKit.ExitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
]
}
@@ -1109,497 +1115,502 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit22ComponentPaneViewModelO11fixedFooteryAC7Threads20NavigationPropertiesVSg_AA0C0VAJtcACmF",
- "mangledName": "$s7LinkKit22ComponentPaneViewModelO11fixedFooteryAC7Threads20NavigationPropertiesVSg_AA0C0VAJtcACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit22ComponentPaneViewModelO",
- "mangledName": "$s7LinkKit22ComponentPaneViewModelO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ComponentPaneViewController",
- "printedName": "ComponentPaneViewController",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ComponentPaneViewController",
- "printedName": "LinkKit.ComponentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC4withAcA0cdE5ModelO_tcfc",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC4withAcA0cdE5ModelO_tcfc",
+ "usr": "s:7LinkKit13ExitErrorCodeO04authD0yAcA04AuthdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04authD0yAcA04AuthdE0OcACmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Var",
+ "name": "assetReportError",
+ "printedName": "assetReportError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ComponentPaneViewController?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.AssetReportErrorCode) -> LinkKit.ExitErrorCode",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewController",
- "printedName": "LinkKit.ComponentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD0yAcA05AssetgdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD0yAcA05AssetgdE0OcACmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
- "kind": "TypeDecl",
- "name": "TransitionAnimation",
- "printedName": "TransitionAnimation",
+ "kind": "Var",
+ "name": "internal",
+ "printedName": "internal",
"children": [
{
- "kind": "Var",
- "name": "push",
- "printedName": "push",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (Swift.String) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ComponentPaneViewController.TransitionAnimation.Type) -> LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "printedName": "(Swift.String) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4pushyA2EmF",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4pushyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO8internalyACSScACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO8internalyACSScACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "institutionError",
+ "printedName": "institutionError",
+ "children": [
{
- "kind": "Var",
- "name": "pop",
- "printedName": "pop",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InstitutionErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ComponentPaneViewController.TransitionAnimation.Type) -> LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "printedName": "(LinkKit.InstitutionErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
- }
- ]
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO3popyA2EmF",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO3popyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
},
{
"kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO2eeoiySbAE_AEtFZ",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO2eeoiySbAE_AEtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivp",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivg",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ ]
}
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO011institutionD0yAcA011InstitutiondE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD0yAcA011InstitutiondE0OcACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "itemError",
+ "printedName": "itemError",
+ "children": [
{
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.ItemErrorCode) -> LinkKit.ExitErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
},
{
"kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4hash4intoys6HasherVz_tF",
- "moduleName": "LinkKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
+ ]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO04itemD0yAcA04ItemdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD0yAcA04ItemdE0OcACmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
]
},
{
- "kind": "Function",
- "name": "transition",
- "printedName": "transition(to:animation:)",
+ "kind": "Var",
+ "name": "invalidInput",
+ "printedName": "invalidInput",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InvalidInputErrorCode) -> LinkKit.ExitErrorCode",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "TransitionAnimation",
- "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
}
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC10transition2to9animationyAA0cdE5ModelO_AC19TransitionAnimationOSgtF",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC10transition2to9animationyAA0cdE5ModelO_AC19TransitionAnimationOSgtF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO12invalidInputyAcA07InvalidgdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO12invalidInputyAcA07InvalidgdE0OcACmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "kind": "Var",
+ "name": "invalidRequest",
+ "printedName": "invalidRequest",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InvalidRequestErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC11viewDidLoadyyF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO14invalidRequestyAcA07InvalidgdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO14invalidRequestyAcA07InvalidgdE0OcACmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
"RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "rateLimitExceeded",
+ "printedName": "rateLimitExceeded",
"children": [
{
- "kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.RateLimitErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.RateLimitErrorCode) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC9viewModel33_AAA813881AE0A64F5A37E01EE9BE9C36LLAA0cdeH0Ovp",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC9viewModel33_AAA813881AE0A64F5A37E01EE9BE9C36LLAA0cdeH0Ovp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO17rateLimitExceededyAcA04RategdE0OcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO17rateLimitExceededyAcA04RategdE0OcACmF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "layoutView",
- "printedName": "layoutView",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIView?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorCode.Type) -> (Swift.String, Swift.String) -> LinkKit.ExitErrorCode",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String, Swift.String) -> LinkKit.ExitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(type: Swift.String, code: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC06layoutE033_AAA813881AE0A64F5A37E01EE9BE9C36LLSo6UIViewCSgvp",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC06layoutE033_AAA813881AE0A64F5A37E01EE9BE9C36LLSo6UIViewCSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ExitErrorCodeO7unknownyACSS_SStcACmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO7unknownyACSS_SStcACmF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "hasStorage": true
+ "RawDocComment"
+ ]
},
{
- "kind": "Var",
- "name": "layoutConstraints",
- "printedName": "layoutConstraints",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[UIKit.NSLayoutConstraint]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSLayoutConstraint",
- "printedName": "UIKit.NSLayoutConstraint",
- "usr": "c:objc(cs)NSLayoutConstraint"
- }
- ],
- "usr": "s:Sa"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit27ComponentPaneViewControllerC17layoutConstraints33_AAA813881AE0A64F5A37E01EE9BE9C36LLSaySo18NSLayoutConstraintCGvp",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC17layoutConstraints33_AAA813881AE0A64F5A37E01EE9BE9C36LLSaySo18NSLayoutConstraintCGvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13ExitErrorCodeO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
- "hasStorage": true
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "ComponentPaneViewController",
- "printedName": "LinkKit.ComponentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO11descriptionSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -1608,233 +1619,114 @@
"usr": "s:SS"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit13ExitErrorCodeO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
+ "AccessControl"
],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController",
- "mangledName": "$s7LinkKit27ComponentPaneViewControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "SDKReleaseLoader",
- "printedName": "SDKReleaseLoader",
- "children": [
{
"kind": "Function",
- "name": "loadAvailableSDKVersions",
- "printedName": "loadAvailableSDKVersions(completionHandler:)",
+ "name": "from",
+ "printedName": "from(errorType:errorCode:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<[LinkKit.GithubRelease], Swift.Error>) -> ()",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<[LinkKit.GithubRelease], Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.GithubRelease]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GithubRelease",
- "printedName": "LinkKit.GithubRelease",
- "usr": "s:7LinkKit13GithubReleaseV"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit16SDKReleaseLoaderP24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA13GithubReleaseVGs5Error_pGc_tF",
- "mangledName": "$s7LinkKit16SDKReleaseLoaderP24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA13GithubReleaseVGs5Error_pGc_tF",
+ "usr": "s:7LinkKit13ExitErrorCodeO4from9errorType0gE0ACSgSS_SStFZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO4from9errorType0gE0ACSgSS_SStFZ",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.SDKReleaseLoader>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
+ "static": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
"funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit16SDKReleaseLoaderP",
- "mangledName": "$s7LinkKit16SDKReleaseLoaderP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "GithubSDKReleaseLoader",
- "printedName": "GithubSDKReleaseLoader",
- "children": [
+ },
{
"kind": "TypeDecl",
- "name": "ReleaseLoaderError",
- "printedName": "ReleaseLoaderError",
+ "name": "CodingKeys",
+ "printedName": "CodingKeys",
"children": [
{
"kind": "Var",
- "name": "invalidURL",
- "printedName": "invalidURL",
+ "name": "errorType",
+ "printedName": "errorType",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "printedName": "(LinkKit.ExitErrorCode.CodingKeys.Type) -> LinkKit.ExitErrorCode.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
}
]
}
@@ -1842,37 +1734,37 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO10invalidURLyA2EmF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO10invalidURLyA2EmF",
- "moduleName": "LinkKit",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO9errorTypeyA2EmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO9errorTypeyA2EmF",
+ "moduleName": "LinkKit",
"fixedbinaryorder": 0
},
{
"kind": "Var",
- "name": "missingData",
- "printedName": "missingData",
+ "name": "errorCode",
+ "printedName": "errorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "printedName": "(LinkKit.ExitErrorCode.CodingKeys.Type) -> LinkKit.ExitErrorCode.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
}
]
}
@@ -1880,137 +1772,180 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO11missingDatayA2EmF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO11missingDatayA2EmF",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO05errorE0yA2EmF",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO05errorE0yA2EmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 1
},
{
- "kind": "Var",
- "name": "api",
- "printedName": "api",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> (Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
- }
- ]
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO3apiyAEs0G0_pcAEmF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO3apiyAEs0G0_pcAEmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueAESgSS_tcfc",
"moduleName": "LinkKit",
- "fixedbinaryorder": 2
+ "implicit": true,
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "decoding",
- "printedName": "decoding",
+ "name": "rawValue",
+ "printedName": "rawValue",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> (Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvp",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvg",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "stringValue",
+ "printedName": "stringValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvp",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReleaseLoaderError",
- "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvg",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(stringValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO8decodingyAEs0G0_pcAEmF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO8decodingyAEs0G0_pcAEmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueAESgSS_tcfc",
"moduleName": "LinkKit",
- "fixedbinaryorder": 3
+ "implicit": true,
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "errorDescription",
- "printedName": "errorDescription",
+ "name": "intValue",
+ "printedName": "intValue",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Swift.Int?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvp",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvp",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvp",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -2020,46 +1955,127 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Swift.Int?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvg",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvg",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvg",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(intValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.ExitErrorCode.CodingKeys",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueAESgSi_tcfc",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueAESgSi_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO",
+ "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "enumRawTypeName": "String",
"isEnumExhaustive": true,
"conformances": [
{
"kind": "Conformance",
- "name": "LocalizedError",
- "printedName": "LocalizedError",
- "usr": "s:10Foundation14LocalizedErrorP",
- "mangledName": "$s10Foundation14LocalizedErrorP"
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
"kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CodingKey",
+ "printedName": "CodingKey",
+ "usr": "s:s9CodingKeyP",
+ "mangledName": "$ss9CodingKeyP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
{
"kind": "Conformance",
@@ -2071,238 +2087,159 @@
]
},
{
- "kind": "Function",
- "name": "loadAvailableSDKVersions",
- "printedName": "loadAvailableSDKVersions(completionHandler:)",
+ "kind": "Var",
+ "name": "invalidRequestString",
+ "printedName": "invalidRequestString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO20invalidRequestStringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO20invalidRequestStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<[LinkKit.GithubRelease], Swift.Error>) -> ()",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<[LinkKit.GithubRelease], Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.GithubRelease]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GithubRelease",
- "printedName": "LinkKit.GithubRelease",
- "usr": "s:7LinkKit13GithubReleaseV"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO20invalidRequestStringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO20invalidRequestStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA0C7ReleaseVGs5Error_pGc_tF",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA0C7ReleaseVGs5Error_pGc_tF",
- "moduleName": "LinkKit",
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
+ "kind": "Var",
+ "name": "invalidInputString",
+ "printedName": "invalidInputString",
"children": [
{
"kind": "TypeNominal",
- "name": "GithubSDKReleaseLoader",
- "printedName": "LinkKit.GithubSDKReleaseLoader",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderVACycfc",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderVACycfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO18invalidInputStringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO18invalidInputStringSSvpZ",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit22GithubSDKReleaseLoaderV",
- "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV",
- "moduleName": "LinkKit",
- "conformances": [
- {
- "kind": "Conformance",
- "name": "SDKReleaseLoader",
- "printedName": "SDKReleaseLoader",
- "usr": "s:7LinkKit16SDKReleaseLoaderP",
- "mangledName": "$s7LinkKit16SDKReleaseLoaderP"
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO18invalidInputStringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO18invalidInputStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "LinkHandlerAction",
- "printedName": "LinkHandlerAction",
- "children": [
- {
- "kind": "Function",
- "name": "composeMail",
- "printedName": "composeMail(to:using:)",
+ "kind": "Var",
+ "name": "institutionErrorString",
+ "printedName": "institutionErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A13HandlerActionV11composeMail2to5usingy10Foundation3URLV_So16UIViewControllerCtFZ",
- "mangledName": "$s7LinkKit0A13HandlerActionV11composeMail2to5usingy10Foundation3URLV_So16UIViewControllerCtFZ",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ExitErrorCodeO011institutionD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD6StringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkHandlerAction",
- "printedName": "LinkKit.LinkHandlerAction",
- "usr": "s:7LinkKit0A13HandlerActionV"
- }
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A13HandlerActionVACycfc",
- "mangledName": "$s7LinkKit0A13HandlerActionVACycfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit0A13HandlerActionV",
- "mangledName": "$s7LinkKit0A13HandlerActionV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "SemanticVersion",
- "printedName": "SemanticVersion",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(versionString:)",
- "children": [
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.SemanticVersion?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO011institutionD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD6StringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit15SemanticVersionV13versionStringACSgSS_tcfc",
- "mangledName": "$s7LinkKit15SemanticVersionV13versionStringACSgSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
"kind": "Var",
- "name": "versionString",
- "printedName": "versionString",
+ "name": "rateLimitExceededString",
+ "printedName": "rateLimitExceededString",
"children": [
{
"kind": "TypeNominal",
@@ -2312,15 +2249,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV13versionStringSSvp",
- "mangledName": "$s7LinkKit15SemanticVersionV13versionStringSSvp",
+ "usr": "s:7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 0,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -2337,9 +2274,10 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV13versionStringSSvg",
- "mangledName": "$s7LinkKit15SemanticVersionV13versionStringSSvg",
+ "usr": "s:7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
"declAttributes": [
"Transparent"
@@ -2350,8 +2288,8 @@
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "apiErrorString",
+ "printedName": "apiErrorString",
"children": [
{
"kind": "TypeNominal",
@@ -2361,12 +2299,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV11descriptionSSvp",
- "mangledName": "$s7LinkKit15SemanticVersionV11descriptionSSvp",
+ "usr": "s:7LinkKit13ExitErrorCodeO03apiD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -2381,33 +2324,42 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV11descriptionSSvg",
- "mangledName": "$s7LinkKit15SemanticVersionV11descriptionSSvg",
+ "usr": "s:7LinkKit13ExitErrorCodeO03apiD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "major",
- "printedName": "major",
+ "name": "itemErrorString",
+ "printedName": "itemErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV5majorSivp",
- "mangledName": "$s7LinkKit15SemanticVersionV5majorSivp",
+ "usr": "s:7LinkKit13ExitErrorCodeO04itemD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -2416,39 +2368,48 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV5majorSivg",
- "mangledName": "$s7LinkKit15SemanticVersionV5majorSivg",
+ "usr": "s:7LinkKit13ExitErrorCodeO04itemD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "minor",
- "printedName": "minor",
+ "name": "authErrorString",
+ "printedName": "authErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV5minorSivp",
- "mangledName": "$s7LinkKit15SemanticVersionV5minorSivp",
+ "usr": "s:7LinkKit13ExitErrorCodeO04authD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04authD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -2457,39 +2418,48 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV5minorSivg",
- "mangledName": "$s7LinkKit15SemanticVersionV5minorSivg",
+ "usr": "s:7LinkKit13ExitErrorCodeO04authD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO04authD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "patch",
- "printedName": "patch",
+ "name": "assetReportErrorString",
+ "printedName": "assetReportErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV5patchSivp",
- "mangledName": "$s7LinkKit15SemanticVersionV5patchSivp",
+ "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -2498,125 +2468,78 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SemanticVersionV5patchSivg",
- "mangledName": "$s7LinkKit15SemanticVersionV5patchSivg",
+ "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "components",
- "printedName": "components",
+ "name": "internalString",
+ "printedName": "internalString",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sa"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SemanticVersionV10components33_5723E2495FAE01EBDD8BE3861CED1ED5LLSaySiGvp",
- "mangledName": "$s7LinkKit15SemanticVersionV10components33_5723E2495FAE01EBDD8BE3861CED1ED5LLSaySiGvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
- },
- {
- "kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SemanticVersionV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit15SemanticVersionV2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit13ExitErrorCodeO14internalStringSSvpZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO14internalStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "<",
- "printedName": "<(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
- },
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ExitErrorCodeO14internalStringSSvgZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO14internalStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SemanticVersionV1loiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit15SemanticVersionV1loiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Function",
- "name": ">",
- "printedName": ">(_:_:)",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
@@ -2626,63 +2549,55 @@
},
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit15SemanticVersionV1goiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit15SemanticVersionV1goiySbAC_ACtFZ",
+ "usr": "s:7LinkKit13ExitErrorCodeO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
- "declAttributes": [
- "AccessControl"
- ],
+ "isFromExtension": true,
"funcSelfKind": "NonMutating"
}
],
- "declKind": "Struct",
- "usr": "s:7LinkKit15SemanticVersionV",
- "mangledName": "$s7LinkKit15SemanticVersionV",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit13ExitErrorCodeO",
+ "mangledName": "$s7LinkKit13ExitErrorCodeO",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
@@ -2695,1382 +2610,695 @@
},
{
"kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
+ "name": "Foundation",
+ "printedName": "Foundation",
"declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
+ "moduleName": "LinkKit"
},
{
"kind": "TypeDecl",
- "name": "EmbeddedSearchModuleView",
- "printedName": "EmbeddedSearchModuleView",
+ "name": "LinkSuccess",
+ "printedName": "LinkSuccess",
"children": [
{
- "kind": "TypeDecl",
- "name": "Style",
- "printedName": "Style",
+ "kind": "Var",
+ "name": "publicToken",
+ "printedName": "publicToken",
"children": [
{
- "kind": "Var",
- "name": "primary",
- "printedName": "primary",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO7primaryyA2EmF",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO7primaryyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvp",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "Var",
- "name": "secondary",
- "printedName": "secondary",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9secondaryyA2EmF",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9secondaryyA2EmF",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvg",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvg",
"moduleName": "LinkKit",
- "fixedbinaryorder": 1
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "Var",
- "name": "tertiary",
- "printedName": "tertiary",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8tertiaryyA2EmF",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8tertiaryyA2EmF",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvs",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvs",
"moduleName": "LinkKit",
- "fixedbinaryorder": 2
+ "implicit": true,
+ "accessorKind": "set"
},
{
- "kind": "Var",
- "name": "textKind",
- "printedName": "textKind",
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "TextKind",
- "printedName": "Threads.TextKind",
- "usr": "s:7Threads8TextKindO"
+ "name": "Void",
+ "printedName": "()"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovp",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvM",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvM",
"moduleName": "LinkKit",
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TextKind",
- "printedName": "Threads.TextKind",
- "usr": "s:7Threads8TextKindO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovg",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "metadata",
+ "printedName": "metadata",
+ "children": [
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "kind": "TypeNominal",
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvp",
+ "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO2eeoiySbAE_AEtFZ",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO2eeoiySbAE_AEtFZ",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvg",
+ "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "funcSelfKind": "NonMutating"
+ "accessorKind": "get"
},
{
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivp",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvs",
+ "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvs",
"moduleName": "LinkKit",
"implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivg",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
+ "accessorKind": "set"
},
{
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
"name": "Void",
"printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO4hash4intoys6HasherVz_tF",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvM",
+ "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvM",
"moduleName": "LinkKit",
"implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "accessorKind": "_modify"
}
]
},
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(viewModel:style:)",
+ "printedName": "init(publicToken:metadata:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchModuleView",
- "printedName": "LinkKit.EmbeddedSearchModuleView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView"
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
},
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchModuleViewModel",
- "printedName": "Workflow.EmbeddedSearchModuleViewModel",
- "usr": "s:8Workflow29EmbeddedSearchModuleViewModelC"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
},
{
"kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC9viewModel5styleAC8Workflow0cdefH0C_AC5StyleOtcfc",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC9viewModel5styleAC8Workflow0cdefH0C_AC5StyleOtcfc",
+ "usr": "s:7LinkKit0A7SuccessV11publicToken8metadataACSS_AA0C8MetadataVtcfc",
+ "mangledName": "$s7LinkKit0A7SuccessV11publicToken8metadataACSS_AA0C8MetadataVtcfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "AccessControl"
- ],
+ "implicit": true,
"init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchModuleViewModel",
- "printedName": "Workflow.EmbeddedSearchModuleViewModel",
- "usr": "s:8Workflow29EmbeddedSearchModuleViewModelC"
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC9viewModel33_8B1E8952538FE6432CBE3AC02A54F6CBLL8Workflow0cdefH0Cvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC9viewModel33_8B1E8952538FE6432CBE3AC02A54F6CBLL8Workflow0cdefH0Cvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A7SuccessV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit0A7SuccessV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "style",
- "printedName": "style",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Style",
- "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5style33_8B1E8952538FE6432CBE3AC02A54F6CBLLAC5StyleOvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5style33_8B1E8952538FE6432CBE3AC02A54F6CBLLAC5StyleOvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7SuccessV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit0A7SuccessV6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "hStack",
- "printedName": "hStack",
+ "kind": "Function",
+ "name": "from",
+ "printedName": "from(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "UIStackView",
- "printedName": "UIKit.UIStackView",
- "usr": "c:objc(cs)UIStackView"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC6hStack33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo07UIStackF0Cvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC6hStack33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo07UIStackF0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "tapGesture",
- "printedName": "tapGesture",
- "children": [
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
+ },
{
"kind": "TypeNominal",
- "name": "UITapGestureRecognizer",
- "printedName": "UIKit.UITapGestureRecognizer",
- "usr": "c:objc(cs)UITapGestureRecognizer"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC10tapGesture33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo05UITapH10RecognizerCvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC10tapGesture33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo05UITapH10RecognizerCvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 3,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "$__lazy_storage_$_leadingAsset",
- "printedName": "$__lazy_storage_$_leadingAsset",
- "children": [
+ "name": "Link_Workflow_Primitives_SDKResult",
+ "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult",
+ "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV"
+ },
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Threads.RenderedAsset?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "RenderedAsset",
- "printedName": "Threads.RenderedAsset",
- "usr": "c:@M@Threads@objc(cs)RenderedAsset"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC30$__lazy_storage_$_leadingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC30$__lazy_storage_$_leadingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7SuccessV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgtFZ",
+ "mangledName": "$s7LinkKit0A7SuccessV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgtFZ",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
- ],
- "fixedbinaryorder": 4,
- "hasStorage": true
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "$__lazy_storage_$_text",
- "printedName": "$__lazy_storage_$_text",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UILabel?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UILabel",
- "printedName": "UIKit.UILabel",
- "usr": "c:objc(cs)UILabel"
- }
- ],
- "usr": "s:Sq"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC22$__lazy_storage_$_text33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC22$__lazy_storage_$_text33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7SuccessV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit0A7SuccessV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
- ],
- "fixedbinaryorder": 5,
- "hasStorage": true
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "$__lazy_storage_$_secondaryText",
- "printedName": "$__lazy_storage_$_secondaryText",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UILabel?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UILabel",
- "printedName": "UIKit.UILabel",
- "usr": "c:objc(cs)UILabel"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKLinkSuccess",
+ "printedName": "LinkKit.PLKLinkSuccess",
+ "usr": "c:objc(cs)PLKLinkSuccess"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_secondaryText33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_secondaryText33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "usr": "s:7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvp",
+ "mangledName": "$s7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvp",
"moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
"declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
+ "AccessControl"
],
- "fixedbinaryorder": 6,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "$__lazy_storage_$_trailingAsset",
- "printedName": "$__lazy_storage_$_trailingAsset",
- "children": [
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Threads.RenderedAsset?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "RenderedAsset",
- "printedName": "Threads.RenderedAsset",
- "usr": "c:@M@Threads@objc(cs)RenderedAsset"
+ "name": "PLKLinkSuccess",
+ "printedName": "LinkKit.PLKLinkSuccess",
+ "usr": "c:objc(cs)PLKLinkSuccess"
}
],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_trailingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_trailingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
- ],
- "fixedbinaryorder": 7,
- "hasStorage": true
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(frame:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchModuleView",
- "printedName": "LinkKit.EmbeddedSearchModuleView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView"
- },
- {
- "kind": "TypeNominal",
- "name": "CGRect",
- "printedName": "CoreGraphics.CGRect",
- "usr": "c:@S@CGRect"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvg",
+ "mangledName": "$s7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView(im)initWithFrame:",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5frameACSo6CGRectV_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithFrame:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
+ ]
}
],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView",
- "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit0A7SuccessV",
+ "mangledName": "$s7LinkKit0A7SuccessV",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
"AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "LayoutArea",
- "printedName": "LayoutArea",
- "usr": "s:9AppCoreUI10LayoutAreaP",
- "mangledName": "$s9AppCoreUI10LayoutAreaP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
{
"kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "SafariServices",
- "printedName": "SafariServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
+ "name": "Foundation",
+ "printedName": "Foundation",
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "ComponentPaneRenderable",
- "printedName": "ComponentPaneRenderable",
+ "name": "EventName",
+ "printedName": "EventName",
"children": [
{
- "kind": "Function",
- "name": "renderComponentPane",
- "printedName": "renderComponentPane()",
+ "kind": "Var",
+ "name": "bankIncomeInsightsCompleted",
+ "printedName": "bankIncomeInsightsCompleted",
"children": [
{
- "kind": "TypeNominal",
- "name": "ComponentPaneViewModel",
- "printedName": "LinkKit.ComponentPaneViewModel",
- "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit23ComponentPaneRenderableP06rendercD0AA0cD9ViewModelOyF",
- "mangledName": "$s7LinkKit23ComponentPaneRenderableP06rendercD0AA0cD9ViewModelOyF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO27bankIncomeInsightsCompletedyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO27bankIncomeInsightsCompletedyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.ComponentPaneRenderable>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit23ComponentPaneRenderableP",
- "mangledName": "$s7LinkKit23ComponentPaneRenderableP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PaneFactory",
- "printedName": "PaneFactory",
- "children": [
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
{
"kind": "Var",
- "name": "log",
- "printedName": "log",
+ "name": "closeOAuth",
+ "printedName": "closeOAuth",
"children": [
{
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit11PaneFactoryV3log3LogAEVvp",
- "mangledName": "$s7LinkKit11PaneFactoryV3log3LogAEVvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO10closeOAuthyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO10closeOAuthyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "error",
+ "printedName": "error",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit11PaneFactoryV3log3LogAEVvg",
- "mangledName": "$s7LinkKit11PaneFactoryV3log3LogAEVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "paneViewController",
- "printedName": "paneViewController(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "PaneViewModel",
- "printedName": "Workflow.PaneViewModel",
- "usr": "s:8Workflow13PaneViewModelO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11PaneFactoryV18paneViewController4withSo06UIViewG0C8Workflow0cF5ModelO_tF",
- "mangledName": "$s7LinkKit11PaneFactoryV18paneViewController4withSo06UIViewG0C8Workflow0cF5ModelO_tF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(log:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PaneFactory",
- "printedName": "LinkKit.PaneFactory",
- "usr": "s:7LinkKit11PaneFactoryV"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit11PaneFactoryV3logAC3LogAEV_tcfc",
- "mangledName": "$s7LinkKit11PaneFactoryV3logAC3LogAEV_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit11PaneFactoryV",
- "mangledName": "$s7LinkKit11PaneFactoryV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Anomalies",
- "printedName": "Anomalies",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "Plaid",
- "printedName": "Plaid",
- "children": [
- {
- "kind": "TypeDecl",
- "name": "CreateError",
- "printedName": "CreateError",
- "children": [
- {
- "kind": "Var",
- "name": "configurationError",
- "printedName": "configurationError",
- "children": [
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Plaid.CreateError.Type) -> (LinkKit.ConfigurationError) -> LinkKit.Plaid.CreateError",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ConfigurationError) -> LinkKit.Plaid.CreateError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CreateError",
- "printedName": "LinkKit.Plaid.CreateError",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Plaid.CreateError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CreateError",
- "printedName": "LinkKit.Plaid.CreateError",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO013configurationE0yAeA013ConfigurationE0OcAEmF",
- "mangledName": "$s7LinkKit5PlaidV11CreateErrorO013configurationE0yAeA013ConfigurationE0OcAEmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO5erroryA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO5erroryA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "exit",
+ "printedName": "exit",
+ "children": [
{
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvp",
- "mangledName": "$s7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvg",
- "mangledName": "$s7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO",
- "mangledName": "$s7LinkKit5PlaidV11CreateErrorO",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO4exityA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO4exityA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
+ "RawDocComment"
]
},
{
- "kind": "Function",
- "name": "create",
- "printedName": "create(_:)",
+ "kind": "Var",
+ "name": "failOAuth",
+ "printedName": "failOAuth",
"children": [
{
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "CreateError",
- "printedName": "LinkKit.Plaid.CreateError",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:s6ResultO"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A22PublicKeyConfigurationVFZ",
- "mangledName": "$s7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A22PublicKeyConfigurationVFZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO9failOAuthyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO9failOAuthyA2CmF",
"moduleName": "LinkKit",
- "static": true,
- "deprecated": true,
"declAttributes": [
- "AccessControl",
- "Available",
"RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "create",
- "printedName": "create(_:)",
+ "kind": "Var",
+ "name": "handoff",
+ "printedName": "handoff",
"children": [
{
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "CreateError",
- "printedName": "LinkKit.Plaid.CreateError",
- "usr": "s:7LinkKit5PlaidV11CreateErrorO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:s6ResultO"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A18TokenConfigurationVFZ",
- "mangledName": "$s7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A18TokenConfigurationVFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "version",
- "printedName": "version",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit5PlaidV7versionSSvpZ",
- "mangledName": "$s7LinkKit5PlaidV7versionSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO7handoffyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO7handoffyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit5PlaidV7versionSSvgZ",
- "mangledName": "$s7LinkKit5PlaidV7versionSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "accessorKind": "get"
- }
]
},
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Plaid",
- "printedName": "LinkKit.Plaid",
- "usr": "s:7LinkKit5PlaidV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit5PlaidVACycfc",
- "mangledName": "$s7LinkKit5PlaidVACycfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit5PlaidV",
- "mangledName": "$s7LinkKit5PlaidV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "HandlerContinueError",
- "printedName": "HandlerContinueError",
- "children": [
{
"kind": "Var",
- "name": "invalidRedirect",
- "printedName": "invalidRedirect",
+ "name": "identityVerificationStartStep",
+ "printedName": "identityVerificationStartStep",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.HandlerContinueError.Type) -> (Swift.String) -> LinkKit.HandlerContinueError",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.HandlerContinueError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.HandlerContinueError.Type",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
@@ -4078,36 +3306,39 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20HandlerContinueErrorO15invalidRedirectyACSScACmF",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO15invalidRedirectyACSScACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit9EventNameO29identityVerificationStartStepyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO29identityVerificationStartStepyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "internal",
- "printedName": "internal",
+ "name": "identityVerificationPassStep",
+ "printedName": "identityVerificationPassStep",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.HandlerContinueError.Type) -> LinkKit.HandlerContinueError",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.HandlerContinueError.Type",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
@@ -4115,1600 +3346,1540 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20HandlerContinueErrorO8internalyA2CmF",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO8internalyA2CmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit9EventNameO28identityVerificationPassStepyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO28identityVerificationPassStepyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "identityVerificationFailStep",
+ "printedName": "identityVerificationFailStep",
"children": [
{
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20HandlerContinueErrorO6toObjCSo7NSErrorCvp",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO6toObjCSo7NSErrorCvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20HandlerContinueErrorO6toObjCSo7NSErrorCvg",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO6toObjCSo7NSErrorCvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO28identityVerificationFailStepyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO28identityVerificationFailStepyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit20HandlerContinueErrorO",
- "mangledName": "$s7LinkKit20HandlerContinueErrorO",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
},
{
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Handler",
- "printedName": "Handler",
- "children": [
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentUsing:)",
+ "kind": "Var",
+ "name": "identityVerificationPendingReviewStep",
+ "printedName": "identityVerificationPendingReviewStep",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP4open12presentUsingyAA18PresentationMethodO_tF",
- "mangledName": "$s7LinkKit7HandlerP4open12presentUsingyAA18PresentationMethodO_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO37identityVerificationPendingReviewStepyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO37identityVerificationPendingReviewStepyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "protocolReq": true,
"declAttributes": [
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentUsing:_:)",
+ "kind": "Var",
+ "name": "identityVerificationCreateSession",
+ "printedName": "identityVerificationCreateSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:SD"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP4open12presentUsing_yAA18PresentationMethodO_SDyS2SGtF",
- "mangledName": "$s7LinkKit7HandlerP4open12presentUsing_yAA18PresentationMethodO_SDyS2SGtF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO33identityVerificationCreateSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO33identityVerificationCreateSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
"declAttributes": [
- "Available",
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "createEmbeddedView",
- "printedName": "createEmbeddedView(presentUsing:)",
+ "kind": "Var",
+ "name": "identityVerificationResumeSession",
+ "printedName": "identityVerificationResumeSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:s6ResultO"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP18createEmbeddedView12presentUsings6ResultOySo6UIViewCAA18ConfigurationErrorOGAA18PresentationMethodO_tF",
- "mangledName": "$s7LinkKit7HandlerP18createEmbeddedView12presentUsings6ResultOySo6UIViewCAA18ConfigurationErrorOGAA18PresentationMethodO_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO33identityVerificationResumeSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO33identityVerificationResumeSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "protocolReq": true,
"declAttributes": [
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "continueFrom",
- "printedName": "continueFrom(redirectUri:)",
+ "kind": "Var",
+ "name": "identityVerificationPassSession",
+ "printedName": "identityVerificationPassSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.HandlerContinueError?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP12continueFrom11redirectUriAA0C13ContinueErrorOSg10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit7HandlerP12continueFrom11redirectUriAA0C13ContinueErrorOSg10Foundation3URLV_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO31identityVerificationPassSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO31identityVerificationPassSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
"declAttributes": [
- "Available",
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "continue",
- "printedName": "continue(from:)",
+ "kind": "Var",
+ "name": "identityVerificationFailSession",
+ "printedName": "identityVerificationFailSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP8continue4fromy10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit7HandlerP8continue4fromy10Foundation3URLV_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO31identityVerificationFailSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO31identityVerificationFailSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
"declAttributes": [
- "Available",
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "resumeAfterTermination",
- "printedName": "resumeAfterTermination(from:)",
+ "kind": "Var",
+ "name": "identityVerificationPendingReviewSession",
+ "printedName": "identityVerificationPendingReviewSession",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7HandlerP22resumeAfterTermination4fromy10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit7HandlerP22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO40identityVerificationPendingReviewSessionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO40identityVerificationPendingReviewSessionyA2CmF",
"moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
- "sugared_genericSig": "",
- "protocolReq": true,
"declAttributes": [
"RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit7HandlerP",
- "mangledName": "$s7LinkKit7HandlerP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkTokenConfiguration",
- "children": [
+ ]
+ },
{
"kind": "Var",
- "name": "token",
- "printedName": "token",
+ "name": "identityVerificationOpenUI",
+ "printedName": "identityVerificationOpenUI",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV5tokenSSvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV5tokenSSvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO26identityVerificationOpenUIyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO26identityVerificationOpenUIyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "identityVerificationResumeUI",
+ "printedName": "identityVerificationResumeUI",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV5tokenSSvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV5tokenSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO28identityVerificationResumeUIyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO28identityVerificationResumeUIyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "onSuccess",
- "printedName": "onSuccess",
+ "name": "identityVerificationCloseUI",
+ "printedName": "identityVerificationCloseUI",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO27identityVerificationCloseUIyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO27identityVerificationCloseUIyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "matchedSelectInstitution",
+ "printedName": "matchedSelectInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO24matchedSelectInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO24matchedSelectInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "matchedSelectVerifyMethod",
+ "printedName": "matchedSelectVerifyMethod",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvs",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0VcvM",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO25matchedSelectVerifyMethodyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO25matchedSelectVerifyMethodyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "onExit",
- "printedName": "onExit",
+ "name": "open",
+ "printedName": "open",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO4openyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO4openyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "openMyPlaid",
+ "printedName": "openMyPlaid",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO11openMyPlaidyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO11openMyPlaidyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "openOAuth",
+ "printedName": "openOAuth",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvs",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0VcvM",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO9openOAuthyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO9openOAuthyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "onEvent",
- "printedName": "onEvent",
+ "name": "searchInstitution",
+ "printedName": "searchInstitution",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO17searchInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO17searchInstitutionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selectDegradedInstitution",
+ "printedName": "selectDegradedInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO25selectDegradedInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO25selectDegradedInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selectFilteredInstitution",
+ "printedName": "selectFilteredInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvs",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO25selectFilteredInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO25selectFilteredInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selectDownInstitution",
+ "printedName": "selectDownInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0VcvM",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO21selectDownInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO21selectDownInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "noLoadingState",
- "printedName": "noLoadingState",
+ "name": "selectInstitution",
+ "printedName": "selectInstitution",
"children": [
{
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvp",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO17selectInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO17selectInstitutionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvg",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selectBrand",
+ "printedName": "selectBrand",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvs",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvM",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO11selectBrandyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO11selectBrandyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(token:onSuccess:)",
+ "kind": "Var",
+ "name": "selectAuthType",
+ "printedName": "selectAuthType",
"children": [
- {
- "kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A18TokenConfigurationV5token9onSuccessACSS_yAA0aG0Vctcfc",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV5token9onSuccessACSS_yAA0aG0Vctcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO14selectAuthTypeyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO14selectAuthTypeyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Function",
- "name": "environment",
- "printedName": "environment(_:)",
+ "kind": "Var",
+ "name": "submitAccountNumber",
+ "printedName": "submitAccountNumber",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.Environment?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A18TokenConfigurationV11environmentyAA11EnvironmentOSg3LogAHVF",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV11environmentyAA11EnvironmentOSg3LogAHVF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO19submitAccountNumberyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO19submitAccountNumberyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "loadSessionConfiguration",
- "printedName": "loadSessionConfiguration(_:_:_:_:_:)",
+ "kind": "Var",
+ "name": "submitDocuments",
+ "printedName": "submitDocuments",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration) -> ()",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "OneOf_Configuration",
- "printedName": "WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration",
- "usr": "s:13WorkflowProto09Link_Api_cA12StartRequestV19OneOf_ConfigurationO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A18TokenConfigurationV011loadSessionD0yySS_S2S3LogAEVy13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_D0OctF",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV011loadSessionD0yySS_S2S3LogAEVy13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_D0OctF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO15submitDocumentsyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO15submitDocumentsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit0A18TokenConfigurationV",
- "mangledName": "$s7LinkKit0A18TokenConfigurationV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "OAuthNonceConfiguration",
- "printedName": "OAuthNonceConfiguration",
- "children": [
+ ]
+ },
{
"kind": "Var",
- "name": "nonce",
- "printedName": "nonce",
+ "name": "submitDocumentsSuccess",
+ "printedName": "submitDocumentsSuccess",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV5nonceSSvp",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV5nonceSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV5nonceSSvg",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV5nonceSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO22submitDocumentsSuccessyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO22submitDocumentsSuccessyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "redirectUri",
- "printedName": "redirectUri",
+ "name": "submitDocumentsError",
+ "printedName": "submitDocumentsError",
"children": [
{
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV11redirectUri10Foundation3URLVvp",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV11redirectUri10Foundation3URLVvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV11redirectUri10Foundation3URLVvg",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV11redirectUri10Foundation3URLVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nonce:redirectUri:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV5nonce11redirectUriACSS_10Foundation3URLVtcfc",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV5nonce11redirectUriACSS_10Foundation3URLVtcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO20submitDocumentsErroryA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO20submitDocumentsErroryA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
"kind": "Var",
- "name": "oauthStateID",
- "printedName": "oauthStateID",
+ "name": "submitRoutingNumber",
+ "printedName": "submitRoutingNumber",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV12oauthStateIDSSSgvp",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV12oauthStateIDSSSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO19submitRoutingNumberyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO19submitRoutingNumberyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "submitCredentials",
+ "printedName": "submitCredentials",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV12oauthStateIDSSSgvg",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV12oauthStateIDSSSgvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO17submitCredentialsyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO17submitCredentialsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV",
- "mangledName": "$s7LinkKit23OAuthNonceConfigurationV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkPublicKeyConfiguration",
- "children": [
+ },
{
- "kind": "TypeDecl",
- "name": "Token",
- "printedName": "Token",
+ "kind": "Var",
+ "name": "submitMFA",
+ "printedName": "submitMFA",
"children": [
{
- "kind": "Var",
- "name": "payment",
- "printedName": "payment",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token.Type) -> (Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO7paymentyAESS_SStcAEmF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO7paymentyAESS_SStcAEmF",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "Available"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO9submitMFAyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO9submitMFAyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "transitionView",
+ "printedName": "transitionView",
+ "children": [
{
- "kind": "Var",
- "name": "depositSwitchToken",
- "printedName": "depositSwitchToken",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token.Type) -> (Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO013depositSwitchF0yAESS_SStcAEmF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO013depositSwitchF0yAESS_SStcAEmF",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "Available"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO14transitionViewyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO14transitionViewyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "viewDataTypes",
+ "printedName": "viewDataTypes",
+ "children": [
{
- "kind": "Var",
- "name": "publicKey",
- "printedName": "publicKey",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token.Type) -> (Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO06publicD0yAESScAEmF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO06publicD0yAESScAEmF",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "Available"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO13viewDataTypesyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO13viewDataTypesyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "submitPhone",
+ "printedName": "submitPhone",
+ "children": [
{
- "kind": "Var",
- "name": "publicToken",
- "printedName": "publicToken",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token.Type) -> (Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.LinkPublicKeyConfiguration.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
]
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO06publicF0yAESS_SStcAEmF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO06publicF0yAESS_SStcAEmF",
- "moduleName": "LinkKit",
- "deprecated": true,
- "declAttributes": [
- "Available"
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO11submitPhoneyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO11submitPhoneyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "skipSubmitPhone",
+ "printedName": "skipSubmitPhone",
+ "children": [
{
- "kind": "Var",
- "name": "associatedValue",
- "printedName": "associatedValue",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO15associatedValueSSvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO15associatedValueSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO15associatedValueSSvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO15associatedValueSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5TokenO",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO15skipSubmitPhoneyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO15skipSubmitPhoneyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "clientName",
- "printedName": "clientName",
+ "name": "verifyPhone",
+ "printedName": "verifyPhone",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientNameSSvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientNameSSvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO11verifyPhoneyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO11verifyPhoneyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientNameSSvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientNameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "connectNewInstitution",
+ "printedName": "connectNewInstitution",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientNameSSvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientNameSSvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO21connectNewInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit9EventNameO21connectNewInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EventName.Type) -> (Swift.String) -> LinkKit.EventName",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.EventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Metatype",
+ "printedName": "LinkKit.EventName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientNameSSvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientNameSSvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit9EventNameO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit9EventNameO7unknownyACSScACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9EventNameO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit9EventNameO4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9EventNameO8rawValueACSS_tcfc",
+ "mangledName": "$s7LinkKit9EventNameO8rawValueACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
{
"kind": "Var",
- "name": "environment",
- "printedName": "environment",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvp",
+ "usr": "s:7LinkKit9EventNameO11descriptionSSvp",
+ "mangledName": "$s7LinkKit9EventNameO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -5717,194 +4888,95 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV11environmentAA11EnvironmentOvM",
+ "usr": "s:7LinkKit9EventNameO11descriptionSSvg",
+ "mangledName": "$s7LinkKit9EventNameO11descriptionSSvg",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
- "kind": "Var",
- "name": "products",
- "printedName": "products",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Set",
- "printedName": "Swift.Set",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sh"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9EventNameO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit9EventNameO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "hasStorage": true,
- "accessors": [
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Set",
- "printedName": "Swift.Set",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sh"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Set",
- "printedName": "Swift.Set",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sh"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8productsShyAA7ProductOGvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit9EventNameO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit9EventNameO2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "language",
- "printedName": "language",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKEventName",
+ "printedName": "LinkKit.PLKEventName",
+ "usr": "c:objc(cs)PLKEventName"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8languageSSvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8languageSSvp",
+ "usr": "s:7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvp",
+ "mangledName": "$s7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -5913,533 +4985,474 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKEventName",
+ "printedName": "LinkKit.PLKEventName",
+ "usr": "c:objc(cs)PLKEventName"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8languageSSvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8languageSSvg",
+ "usr": "s:7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvg",
+ "mangledName": "$s7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvg",
"moduleName": "LinkKit",
- "implicit": true,
+ "isFromExtension": true,
"accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8languageSSvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8languageSSvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8languageSSvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8languageSSvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit9EventNameO",
+ "mangledName": "$s7LinkKit9EventNameO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
{
- "kind": "Var",
- "name": "countryCodes",
- "printedName": "countryCodes",
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PlaidLinkViewController",
+ "printedName": "PlaidLinkViewController",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(log:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
+ "name": "PlaidLinkViewController",
+ "printedName": "LinkKit.PlaidLinkViewController",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "hasDefaultArg": true,
+ "usr": "s:3LogAAV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit05PlaidA14ViewControllerC3logAC3LogAEV_tcfc",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC3logAC3LogAEV_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
+ "Custom",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PlaidLinkViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
+ "name": "PlaidLinkViewController",
+ "printedName": "LinkKit.PlaidLinkViewController",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV12countryCodesSaySSGvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "token",
- "printedName": "token",
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
"children": [
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
+ "name": "Void",
+ "printedName": "()"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvp",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC11viewDidLoadyyF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
"declAttributes": [
- "HasStorage",
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "transitionTo",
+ "printedName": "transitionTo(pane:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV5tokenAC5TokenOvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit05PlaidA14ViewControllerC12transitionTo4paneySo06UIViewE0C_tF",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC12transitionTo4paneySo06UIViewE0C_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "onSuccess",
- "printedName": "onSuccess",
+ "name": "log",
+ "printedName": "log",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvp",
+ "usr": "s:7LinkKit05PlaidA14ViewControllerC3log33_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LL3LogAFVvp",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC3log33_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LL3LogAFVvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "Final",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0VcvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV9onSuccessyyAA0aG0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "onExit",
- "printedName": "onExit",
+ "name": "$__lazy_storage_$_presentedPaneViewController",
+ "printedName": "$__lazy_storage_$_presentedPaneViewController",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "UIKit.UIViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvp",
+ "usr": "s:7LinkKit05PlaidA14ViewControllerC031$__lazy_storage_$_presentedPanedE033_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LLSo06UIViewE0CSgvp",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC031$__lazy_storage_$_presentedPanedE033_A4C7A2EA0E1696FD0A1AEACE1FB7C5E4LLSo06UIViewE0CSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final"
],
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 1,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "PlaidLinkViewController",
+ "printedName": "LinkKit.PlaidLinkViewController",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0Vcvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0VcvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV6onExityyAA0aG0VcvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)PlaidLinkViewController",
+ "mangledName": "$s7LinkKit05PlaidA14ViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Institution",
+ "printedName": "Institution",
+ "children": [
{
"kind": "Var",
- "name": "onEvent",
- "printedName": "onEvent",
+ "name": "id",
+ "printedName": "id",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvp",
+ "usr": "s:7LinkKit11InstitutionV2idSSvp",
+ "mangledName": "$s7LinkKit11InstitutionV2idSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -6452,27 +5465,15 @@
"printedName": "Get()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvg",
+ "usr": "s:7LinkKit11InstitutionV2idSSvg",
+ "mangledName": "$s7LinkKit11InstitutionV2idSSvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -6488,27 +5489,15 @@
"printedName": "()"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0Vcvs",
+ "usr": "s:7LinkKit11InstitutionV2idSSvs",
+ "mangledName": "$s7LinkKit11InstitutionV2idSSvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -6525,8 +5514,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0VcvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7onEventyyAA0aG0VcvM",
+ "usr": "s:7LinkKit11InstitutionV2idSSvM",
+ "mangledName": "$s7LinkKit11InstitutionV2idSSvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -6535,30 +5524,21 @@
},
{
"kind": "Var",
- "name": "webhook",
- "printedName": "webhook",
+ "name": "name",
+ "printedName": "name",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvp",
+ "usr": "s:7LinkKit11InstitutionV4nameSSvp",
+ "mangledName": "$s7LinkKit11InstitutionV4nameSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -6572,22 +5552,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvg",
+ "usr": "s:7LinkKit11InstitutionV4nameSSvg",
+ "mangledName": "$s7LinkKit11InstitutionV4nameSSvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -6604,22 +5576,14 @@
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvs",
+ "usr": "s:7LinkKit11InstitutionV4nameSSvs",
+ "mangledName": "$s7LinkKit11InstitutionV4nameSSvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -6636,8 +5600,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV7webhook10Foundation3URLVSgvM",
+ "usr": "s:7LinkKit11InstitutionV4nameSSvM",
+ "mangledName": "$s7LinkKit11InstitutionV4nameSSvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -6645,147 +5609,136 @@
]
},
{
- "kind": "Var",
- "name": "userLegalName",
- "printedName": "userLegalName",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(id:name:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit11InstitutionV2id4nameACSS_SStcfc",
+ "mangledName": "$s7LinkKit11InstitutionV2id4nameACSS_SStcfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
],
- "hasStorage": true,
- "accessors": [
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit11InstitutionV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit11InstitutionV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit11InstitutionV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit11InstitutionV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV13userLegalNameSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit11InstitutionV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit11InstitutionV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "userEmailAddress",
- "printedName": "userEmailAddress",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKInstitution",
+ "printedName": "LinkKit.PLKInstitution",
+ "usr": "c:objc(cs)PLKInstitution"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvp",
+ "usr": "s:7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvp",
+ "mangledName": "$s7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -6794,220 +5747,423 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKInstitution",
+ "printedName": "LinkKit.PLKInstitution",
+ "usr": "c:objc(cs)PLKInstitution"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvg",
+ "usr": "s:7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvg",
+ "mangledName": "$s7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvg",
"moduleName": "LinkKit",
- "implicit": true,
+ "isFromExtension": true,
"accessorKind": "get"
- },
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit11InstitutionV",
+ "mangledName": "$s7LinkKit11InstitutionV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ConfigurationError",
+ "printedName": "ConfigurationError",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "malformedClientID",
+ "printedName": "malformedClientID",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV16userEmailAddressSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO17malformedClientIDyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO17malformedClientIDyACSS_tcACmF",
+ "moduleName": "LinkKit"
},
{
"kind": "Var",
- "name": "userPhoneNumber",
- "printedName": "userPhoneNumber",
+ "name": "missingAuthorization",
+ "printedName": "missingAuthorization",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO20missingAuthorizationyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO20missingAuthorizationyACSS_tcACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Var",
+ "name": "noProduct",
+ "printedName": "noProduct",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15userPhoneNumberSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO9noProductyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO9noProductyACSS_tcACmF",
+ "moduleName": "LinkKit"
},
{
"kind": "Var",
- "name": "linkCustomizationName",
- "printedName": "linkCustomizationName",
+ "name": "invalidOptionValue",
+ "printedName": "invalidOptionValue",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO18invalidOptionValueyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO18invalidOptionValueyACSS_tcACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Var",
+ "name": "invalidOptionCombination",
+ "printedName": "invalidOptionCombination",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO24invalidOptionCombinationyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO24invalidOptionCombinationyACSS_tcACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Var",
+ "name": "invalidToken",
+ "printedName": "invalidToken",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(message: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18ConfigurationErrorO12invalidTokenyACSS_tcACmF",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO12invalidTokenyACSS_tcACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Var",
+ "name": "message",
+ "printedName": "message",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvp",
+ "usr": "s:7LinkKit18ConfigurationErrorO7messageSSvp",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO7messageSSvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -7016,101 +6172,157 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvg",
+ "usr": "s:7LinkKit18ConfigurationErrorO7messageSSvg",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO7messageSSvg",
"moduleName": "LinkKit",
- "implicit": true,
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovp",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvs",
+ "usr": "s:7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovg",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovg",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "embeddedNSError",
+ "printedName": "embeddedNSError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvp",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV21linkCustomizationNameSSSgvM",
+ "usr": "s:7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvg",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvg",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "isFromExtension": true,
+ "accessorKind": "get"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit18ConfigurationErrorO",
+ "mangledName": "$s7LinkKit18ConfigurationErrorO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkExit",
+ "printedName": "LinkExit",
+ "children": [
{
"kind": "Var",
- "name": "accountSubtypes",
- "printedName": "accountSubtypes",
+ "name": "error",
+ "printedName": "error",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.AccountSubtype]",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitError?",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvp",
+ "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvp",
+ "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -7127,22 +6339,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.AccountSubtype]",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitError?",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvg",
+ "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvg",
+ "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -7159,22 +6371,22 @@
},
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.AccountSubtype]",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitError?",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvs",
+ "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvs",
+ "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -7191,8 +6403,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV15accountSubtypesSayAA14AccountSubtypeOGvM",
+ "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvM",
+ "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -7201,30 +6413,21 @@
},
{
"kind": "Var",
- "name": "oauthConfiguration",
- "printedName": "oauthConfiguration",
+ "name": "metadata",
+ "printedName": "metadata",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.OAuthNonceConfiguration?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- }
- ],
- "usr": "s:Sq"
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvp",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvp",
+ "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvp",
+ "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -7238,22 +6441,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.OAuthNonceConfiguration?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- }
- ],
- "usr": "s:Sq"
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvg",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvg",
+ "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvg",
+ "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -7270,22 +6465,14 @@
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.OAuthNonceConfiguration?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- }
- ],
- "usr": "s:Sq"
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvs",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvs",
+ "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvs",
+ "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -7302,8 +6489,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvM",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV05oauthE0AA010OAuthNonceE0VSgvM",
+ "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvM",
+ "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -7313,152 +6500,153 @@
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(clientName:environment:products:language:token:countryCodes:onSuccess:)",
+ "printedName": "init(error:metadata:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
},
{
"kind": "TypeNominal",
- "name": "Set",
- "printedName": "Swift.Set",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitError?",
"children": [
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
}
],
- "usr": "s:Sh"
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
+ "name": "ExitMetadata",
+ "printedName": "LinkKit.ExitMetadata",
+ "usr": "s:7LinkKit12ExitMetadataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A4ExitV5error8metadataAcA0C5ErrorVSg_AA0C8MetadataVtcfc",
+ "mangledName": "$s7LinkKit0A4ExitV5error8metadataAcA0C5ErrorVSg_AA0C8MetadataVtcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
},
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV10clientName11environment8products8language5token12countryCodes9onSuccessACSS_AA11EnvironmentOShyAA7ProductOGSSAC5TokenOSaySSGyAA0aO0Vctcfc",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV10clientName11environment8products8language5token12countryCodes9onSuccessACSS_AA11EnvironmentOShyAA7ProductOGSSAC5TokenOSaySSGyAA0aO0Vctcfc",
+ "usr": "s:7LinkKit0A4ExitV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit0A4ExitV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
+ "implicit": true,
+ "throwing": true,
"init_kind": "Designated"
},
{
"kind": "Function",
- "name": "validate",
- "printedName": "validate()",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ConfigurationError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV8validateAA0E5ErrorOSgyF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV8validateAA0E5ErrorOSgyF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A4ExitV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit0A4ExitV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "loadSessionConfiguration",
- "printedName": "loadSessionConfiguration(_:_:_:_:_:)",
+ "name": "from",
+ "printedName": "from(_:_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Link_Workflow_Primitives_SDKResult",
+ "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult",
+ "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A4ExitV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgAHtFZ",
+ "mangledName": "$s7LinkKit0A4ExitV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgAHtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
{
"kind": "TypeNominal",
"name": "Bool",
@@ -7466,58 +6654,135 @@
"usr": "s:Sb"
},
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token, WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token, WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "OneOf_Configuration",
- "printedName": "WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration",
- "usr": "s:13WorkflowProto09Link_Api_cA12StartRequestV19OneOf_ConfigurationO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV011loadSessionE0yySS_S2SSbyAC5TokenO_13WorkflowProto0a5_Api_aI12StartRequestV06OneOf_E0OtctF",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV011loadSessionE0yySS_S2SSbyAC5TokenO_13WorkflowProto0a5_Api_aI12StartRequestV06OneOf_E0OtctF",
+ "usr": "s:7LinkKit0A4ExitV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit0A4ExitV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKLinkExit",
+ "printedName": "LinkKit.PLKLinkExit",
+ "usr": "c:objc(cs)PLKLinkExit"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvp",
+ "mangledName": "$s7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvp",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKLinkExit",
+ "printedName": "LinkKit.PLKLinkExit",
+ "usr": "c:objc(cs)PLKLinkExit"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvg",
+ "mangledName": "$s7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV",
- "mangledName": "$s7LinkKit0A22PublicKeyConfigurationV",
+ "usr": "s:7LinkKit0A4ExitV",
+ "mangledName": "$s7LinkKit0A4ExitV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
"RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
"name": "AccountSubtype",
@@ -16314,15 +15579,218 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "LinkSuccess",
- "printedName": "LinkSuccess",
+ "name": "SuccessMetadata",
+ "printedName": "SuccessMetadata",
"children": [
{
"kind": "Var",
- "name": "publicToken",
- "printedName": "publicToken",
+ "name": "institution",
+ "printedName": "institution",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvs",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvM",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "accounts",
+ "printedName": "accounts",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Account]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Account]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Account]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvs",
+ "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvM",
+ "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "linkSessionID",
+ "printedName": "linkSessionID",
"children": [
{
"kind": "TypeNominal",
@@ -16332,8 +15800,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvp",
- "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvp",
+ "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasStorage",
@@ -16355,8 +15823,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvg",
- "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvg",
+ "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -16379,8 +15847,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvs",
- "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvs",
+ "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvs",
+ "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -16397,8 +15865,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV11publicTokenSSvM",
- "mangledName": "$s7LinkKit0A7SuccessV11publicTokenSSvM",
+ "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvM",
+ "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -16407,21 +15875,30 @@
},
{
"kind": "Var",
- "name": "metadata",
- "printedName": "metadata",
+ "name": "metadataJSON",
+ "printedName": "metadataJSON",
"children": [
{
"kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvp",
- "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvp",
+ "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -16435,14 +15912,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvg",
- "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvg",
+ "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -16459,14 +15944,22 @@
},
{
"kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvs",
- "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvs",
+ "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvs",
+ "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -16483,8 +15976,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV8metadataAA0C8MetadataVvM",
- "mangledName": "$s7LinkKit0A7SuccessV8metadataAA0C8MetadataVvM",
+ "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvM",
+ "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -16494,13 +15987,33 @@
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(publicToken:metadata:)",
+ "printedName": "init(institution:accounts:linkSessionID:metadataJSON:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Institution",
+ "printedName": "LinkKit.Institution",
+ "usr": "s:7LinkKit11InstitutionV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Account]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ }
+ ],
+ "usr": "s:Sa"
},
{
"kind": "TypeNominal",
@@ -16510,14 +16023,23 @@
},
{
"kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A7SuccessV11publicToken8metadataACSS_AA0C8MetadataVtcfc",
- "mangledName": "$s7LinkKit0A7SuccessV11publicToken8metadataACSS_AA0C8MetadataVtcfc",
+ "usr": "s:7LinkKit15SuccessMetadataV11institution8accounts13linkSessionID12metadataJSONAcA11InstitutionV_SayAA7AccountVGS2SSgtcfc",
+ "mangledName": "$s7LinkKit15SuccessMetadataV11institution8accounts13linkSessionID12metadataJSONAcA11InstitutionV_SayAA7AccountVGS2SSgtcfc",
"moduleName": "LinkKit",
"implicit": true,
"init_kind": "Designated"
@@ -16529,9 +16051,9 @@
"children": [
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
},
{
"kind": "TypeNominal",
@@ -16541,8 +16063,8 @@
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A7SuccessV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit0A7SuccessV4fromACs7Decoder_p_tKcfc",
+ "usr": "s:7LinkKit15SuccessMetadataV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit15SuccessMetadataV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
"implicit": true,
"throwing": true,
@@ -16566,8 +16088,8 @@
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A7SuccessV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit0A7SuccessV6encode2toys7Encoder_p_tKF",
+ "usr": "s:7LinkKit15SuccessMetadataV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit15SuccessMetadataV6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"implicit": true,
"throwing": true,
@@ -16580,15 +16102,15 @@
"children": [
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
},
{
"kind": "TypeNominal",
- "name": "Link_Workflow_Primitives_SDKResult",
- "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult",
- "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV"
+ "name": "Metadata",
+ "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult.Metadata",
+ "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV8MetadataV"
},
{
"kind": "TypeNominal",
@@ -16606,8 +16128,8 @@
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A7SuccessV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgtFZ",
- "mangledName": "$s7LinkKit0A7SuccessV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgtFZ",
+ "usr": "s:7LinkKit15SuccessMetadataV4fromyAC13WorkflowProto0a1_F21_Primitives_SDKResultV0D0V_SSSgtFZ",
+ "mangledName": "$s7LinkKit15SuccessMetadataV4fromyAC13WorkflowProto0a1_F21_Primitives_SDKResultV0D0V_SSSgtFZ",
"moduleName": "LinkKit",
"static": true,
"isFromExtension": true,
@@ -16626,20 +16148,20 @@
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "SuccessMetadata",
+ "printedName": "LinkKit.SuccessMetadata",
+ "usr": "s:7LinkKit15SuccessMetadataV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A7SuccessV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit0A7SuccessV2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit15SuccessMetadataV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit15SuccessMetadataV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
"isFromExtension": true,
@@ -16652,18 +16174,15 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkSuccess",
- "printedName": "LinkKit.PLKLinkSuccess",
- "usr": "c:objc(cs)PLKLinkSuccess"
+ "name": "PLKSuccessMetadata",
+ "printedName": "LinkKit.PLKSuccessMetadata",
+ "usr": "c:objc(cs)PLKSuccessMetadata"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvp",
- "mangledName": "$s7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvp",
+ "usr": "s:7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvp",
+ "mangledName": "$s7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
"isFromExtension": true,
"accessors": [
{
@@ -16673,14 +16192,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkSuccess",
- "printedName": "LinkKit.PLKLinkSuccess",
- "usr": "c:objc(cs)PLKLinkSuccess"
+ "name": "PLKSuccessMetadata",
+ "printedName": "LinkKit.PLKSuccessMetadata",
+ "usr": "c:objc(cs)PLKSuccessMetadata"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvg",
- "mangledName": "$s7LinkKit0A7SuccessV6toObjCSo07PLKLinkC0Cvg",
+ "usr": "s:7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvg",
+ "mangledName": "$s7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
@@ -16689,8 +16208,8 @@
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit0A7SuccessV",
- "mangledName": "$s7LinkKit0A7SuccessV",
+ "usr": "s:7LinkKit15SuccessMetadataV",
+ "mangledName": "$s7LinkKit15SuccessMetadataV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
@@ -16720,702 +16239,824 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
{
"kind": "TypeDecl",
- "name": "LinkExit",
- "printedName": "LinkExit",
+ "name": "ComponentPaneViewModel",
+ "printedName": "ComponentPaneViewModel",
"children": [
{
"kind": "Var",
- "name": "error",
- "printedName": "error",
+ "name": "content",
+ "printedName": "content",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitError?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ComponentPaneViewModel.Type) -> (Threads.NavigationProperties?, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Threads.NavigationProperties?, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(navigation: Threads.NavigationProperties?, content: LinkKit.Component)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Threads.NavigationProperties?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NavigationProperties",
+ "printedName": "Threads.NavigationProperties",
+ "usr": "s:7Threads20NavigationPropertiesV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ }
+ ]
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "name": "Metatype",
+ "printedName": "LinkKit.ComponentPaneViewModel.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvp",
- "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO7contentyAC7Threads20NavigationPropertiesVSg_AA0C0VtcACmF",
+ "mangledName": "$s7LinkKit22ComponentPaneViewModelO7contentyAC7Threads20NavigationPropertiesVSg_AA0C0VtcACmF",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 0
+ },
+ {
+ "kind": "Var",
+ "name": "fixedFooter",
+ "printedName": "fixedFooter",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ComponentPaneViewModel.Type) -> (Threads.NavigationProperties?, LinkKit.Component, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitError?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Threads.NavigationProperties?, LinkKit.Component, LinkKit.Component) -> LinkKit.ComponentPaneViewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(navigation: Threads.NavigationProperties?, content: LinkKit.Component, footer: LinkKit.Component)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Threads.NavigationProperties?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NavigationProperties",
+ "printedName": "Threads.NavigationProperties",
+ "usr": "s:7Threads20NavigationPropertiesV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvg",
- "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitError?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ComponentPaneViewModel.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvs",
- "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV5errorAA0C5ErrorVSgvM",
- "mangledName": "$s7LinkKit0A4ExitV5errorAA0C5ErrorVSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
- ]
- },
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO11fixedFooteryAC7Threads20NavigationPropertiesVSg_AA0C0VAJtcACmF",
+ "mangledName": "$s7LinkKit22ComponentPaneViewModelO11fixedFooteryAC7Threads20NavigationPropertiesVSg_AA0C0VAJtcACmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO",
+ "mangledName": "$s7LinkKit22ComponentPaneViewModelO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isEnumExhaustive": true,
+ "conformances": [
{
- "kind": "Var",
- "name": "metadata",
- "printedName": "metadata",
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ComponentPaneViewController",
+ "printedName": "ComponentPaneViewController",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(with:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "ComponentPaneViewController",
+ "printedName": "LinkKit.ComponentPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvp",
- "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC4withAcA0cdE5ModelO_tcfc",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC4withAcA0cdE5ModelO_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
+ "Custom",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ComponentPaneViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "ComponentPaneViewController",
+ "printedName": "LinkKit.ComponentPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvg",
- "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvg",
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "TransitionAnimation",
+ "printedName": "TransitionAnimation",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "push",
+ "printedName": "push",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ComponentPaneViewController.TransitionAnimation.Type) -> LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4pushyA2EmF",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4pushyA2EmF",
"moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "fixedbinaryorder": 0
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "Var",
+ "name": "pop",
+ "printedName": "pop",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ComponentPaneViewController.TransitionAnimation.Type) -> LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO3popyA2EmF",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO3popyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvs",
- "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvs",
+ "declKind": "Func",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO2eeoiySbAE_AEtFZ",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO2eeoiySbAE_AEtFZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "Var",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV8metadataAA0C8MetadataVvM",
- "mangledName": "$s7LinkKit0A4ExitV8metadataAA0C8MetadataVvM",
+ "declKind": "Var",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivp",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivp",
"moduleName": "LinkKit",
"implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(error:metadata:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivg",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO9hashValueSivg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitError?",
+ "kind": "Function",
+ "name": "hash",
+ "printedName": "hash(into:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "declKind": "Func",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO4hash4intoys6HasherVz_tF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A4ExitV5error8metadataAcA0C5ErrorVSg_AA0C8MetadataVtcfc",
- "mangledName": "$s7LinkKit0A4ExitV5error8metadataAcA0C5ErrorVSg_AA0C8MetadataVtcfc",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isEnumExhaustive": true,
+ "conformances": [
{
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A4ExitV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit0A4ExitV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
},
{
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A4ExitV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit0A4ExitV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Function",
- "name": "from",
- "printedName": "from(_:_:_:)",
+ "name": "transition",
+ "printedName": "transition(to:animation:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- },
- {
- "kind": "TypeNominal",
- "name": "Link_Workflow_Primitives_SDKResult",
- "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult",
- "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
},
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "TransitionAnimation",
+ "printedName": "LinkKit.ComponentPaneViewController.TransitionAnimation",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC19TransitionAnimationO"
}
],
+ "hasDefaultArg": true,
"usr": "s:Sq"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A4ExitV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgAHtFZ",
- "mangledName": "$s7LinkKit0A4ExitV4fromyAC13WorkflowProto0a1_E21_Primitives_SDKResultV_SSSgAHtFZ",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC10transition2to9animationyAA0cdE5ModelO_AC19TransitionAnimationOSgtF",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC10transition2to9animationyAA0cdE5ModelO_AC19TransitionAnimationOSgtF",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl"
+ ],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A4ExitV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit0A4ExitV2eeoiySbAC_ACtFZ",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC11viewDidLoadyyF",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "RawDocComment"
+ ],
"funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkExit",
- "printedName": "LinkKit.PLKLinkExit",
- "usr": "c:objc(cs)PLKLinkExit"
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvp",
- "mangledName": "$s7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvp",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC9viewModel33_AAA813881AE0A64F5A37E01EE9BE9C36LLAA0cdeH0Ovp",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC9viewModel33_AAA813881AE0A64F5A37E01EE9BE9C36LLAA0cdeH0Ovp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "AccessControl"
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
],
- "isFromExtension": true,
- "accessors": [
+ "fixedbinaryorder": 0,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "layoutView",
+ "printedName": "layoutView",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "UIKit.UIView?",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkExit",
- "printedName": "LinkKit.PLKLinkExit",
- "usr": "c:objc(cs)PLKLinkExit"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvg",
- "mangledName": "$s7LinkKit0A4ExitV6toObjCSo07PLKLinkC0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit0A4ExitV",
- "mangledName": "$s7LinkKit0A4ExitV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC06layoutE033_AAA813881AE0A64F5A37E01EE9BE9C36LLSo6UIViewCSgvp",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC06layoutE033_AAA813881AE0A64F5A37E01EE9BE9C36LLSo6UIViewCSgvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 1,
+ "hasStorage": true
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LinkEvent",
- "printedName": "LinkEvent",
- "children": [
{
"kind": "Var",
- "name": "eventName",
- "printedName": "eventName",
+ "name": "layoutConstraints",
+ "printedName": "layoutConstraints",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Array",
+ "printedName": "[UIKit.NSLayoutConstraint]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSLayoutConstraint",
+ "printedName": "UIKit.NSLayoutConstraint",
+ "usr": "c:objc(cs)NSLayoutConstraint"
+ }
+ ],
+ "usr": "s:Sa"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovp",
- "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovp",
+ "usr": "s:7LinkKit27ComponentPaneViewControllerC17layoutConstraints33_AAA813881AE0A64F5A37E01EE9BE9C36LLSaySo18NSLayoutConstraintCGvp",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC17layoutConstraints33_AAA813881AE0A64F5A37E01EE9BE9C36LLSaySo18NSLayoutConstraintCGvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovg",
- "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovs",
- "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0OvM",
- "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0OvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
+ "fixedbinaryorder": 2,
+ "hasStorage": true
},
{
- "kind": "Var",
- "name": "metadata",
- "printedName": "metadata",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvp",
- "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvg",
- "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "name": "ComponentPaneViewController",
+ "printedName": "LinkKit.ComponentPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvs",
- "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvM",
- "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "usr": "s:Sq"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit0A5EventV4fromACs7Decoder_p_tKcfc",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "AccessControl"
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
],
- "throwing": true,
"init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)ComponentPaneViewController",
+ "mangledName": "$s7LinkKit27ComponentPaneViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(eventName:metadata:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV9eventName8metadataAcA0cE0O_AA0C8MetadataVtcfc",
- "mangledName": "$s7LinkKit0A5EventV9eventName8metadataAcA0cE0O_AA0C8MetadataVtcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "SDKReleaseLoader",
+ "printedName": "SDKReleaseLoader",
+ "children": [
{
"kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "name": "loadAvailableSDKVersions",
+ "printedName": "loadAvailableSDKVersions(completionHandler:)",
"children": [
{
"kind": "TypeNominal",
@@ -17423,53 +17064,101 @@
"printedName": "()"
},
{
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Result<[LinkKit.GithubRelease], Swift.Error>) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Result",
+ "printedName": "Swift.Result<[LinkKit.GithubRelease], Swift.Error>",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.GithubRelease]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GithubRelease",
+ "printedName": "LinkKit.GithubRelease",
+ "usr": "s:7LinkKit13GithubReleaseV"
+ }
+ ],
+ "usr": "s:Sa"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:s6ResultO"
+ }
+ ]
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A5EventV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit0A5EventV6encode2toys7Encoder_p_tKF",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA13GithubReleaseVGs5Error_pGc_tF",
+ "mangledName": "$s7LinkKit16SDKReleaseLoaderP24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA13GithubReleaseVGs5Error_pGc_tF",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.SDKReleaseLoader>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
"funcSelfKind": "NonMutating"
- },
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP",
+ "mangledName": "$s7LinkKit16SDKReleaseLoaderP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "GithubSDKReleaseLoader",
+ "printedName": "GithubSDKReleaseLoader",
+ "children": [
{
"kind": "TypeDecl",
- "name": "CodingKeys",
- "printedName": "CodingKeys",
+ "name": "ReleaseLoaderError",
+ "printedName": "ReleaseLoaderError",
"children": [
{
"kind": "Var",
- "name": "eventName",
- "printedName": "eventName",
+ "name": "invalidURL",
+ "printedName": "invalidURL",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkEvent.CodingKeys.Type) -> LinkKit.LinkEvent.CodingKeys",
+ "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.LinkEvent.CodingKeys.Type",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
}
]
}
@@ -17477,37 +17166,37 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO9eventNameyA2EmF",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO9eventNameyA2EmF",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO10invalidURLyA2EmF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO10invalidURLyA2EmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 0
},
{
"kind": "Var",
- "name": "metadata",
- "printedName": "metadata",
+ "name": "missingData",
+ "printedName": "missingData",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkEvent.CodingKeys.Type) -> LinkKit.LinkEvent.CodingKeys",
+ "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.LinkEvent.CodingKeys.Type",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
}
]
}
@@ -17515,180 +17204,137 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8metadatayA2EmF",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8metadatayA2EmF",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO11missingDatayA2EmF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO11missingDatayA2EmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 1
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
+ "kind": "Var",
+ "name": "api",
+ "printedName": "api",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.LinkEvent.CodingKeys?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> (Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueAESgSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO3apiyAEs0G0_pcAEmF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO3apiyAEs0G0_pcAEmF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "fixedbinaryorder": 2
},
{
"kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
+ "name": "decoding",
+ "printedName": "decoding",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueSSvp",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueSSvg",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "stringValue",
- "printedName": "stringValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueSSvp",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type) -> (Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueSSvg",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.LinkEvent.CodingKeys?",
- "children": [
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Error) -> LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ReleaseLoaderError",
+ "printedName": "LinkKit.GithubSDKReleaseLoader.ReleaseLoaderError",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueAESgSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO8decodingyAEs0G0_pcAEmF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO8decodingyAEs0G0_pcAEmF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "fixedbinaryorder": 3
},
{
"kind": "Var",
- "name": "intValue",
- "printedName": "intValue",
+ "name": "errorDescription",
+ "printedName": "errorDescription",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.Int?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueSiSgvp",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueSiSgvp",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvp",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvp",
"moduleName": "LinkKit",
- "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -17698,127 +17344,46 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.Int?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueSiSgvg",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueSiSgvg",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvg",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO16errorDescriptionSSSgvg",
"moduleName": "LinkKit",
- "implicit": true,
"accessorKind": "get"
}
]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(intValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.LinkEvent.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.LinkEvent.CodingKeys",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueAESgSi_tcfc",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueAESgSi_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit0A5EventV10CodingKeysO",
- "mangledName": "$s7LinkKit0A5EventV10CodingKeysO",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV07ReleaseE5ErrorO",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "enumRawTypeName": "String",
"isEnumExhaustive": true,
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "CodingKey",
- "printedName": "CodingKey",
- "usr": "s:s9CodingKeyP",
- "mangledName": "$ss9CodingKeyP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "LocalizedError",
+ "printedName": "LocalizedError",
+ "usr": "s:10Foundation14LocalizedErrorP",
+ "mangledName": "$s10Foundation14LocalizedErrorP"
},
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
},
{
"kind": "Conformance",
@@ -17830,254 +17395,224 @@
]
},
{
- "kind": "Var",
- "name": "dateFormatter",
- "printedName": "dateFormatter",
+ "kind": "Function",
+ "name": "loadAvailableSDKVersions",
+ "printedName": "loadAvailableSDKVersions(completionHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ISO8601DateFormatter",
- "printedName": "Foundation.ISO8601DateFormatter",
- "usr": "c:objc(cs)NSISO8601DateFormatter"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvpZ",
- "mangledName": "$s7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage"
- ],
- "isFromExtension": true,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "name": "Void",
+ "printedName": "()"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Result<[LinkKit.GithubRelease], Swift.Error>) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ISO8601DateFormatter",
- "printedName": "Foundation.ISO8601DateFormatter",
- "usr": "c:objc(cs)NSISO8601DateFormatter"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Result",
+ "printedName": "Swift.Result<[LinkKit.GithubRelease], Swift.Error>",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.GithubRelease]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GithubRelease",
+ "printedName": "LinkKit.GithubRelease",
+ "usr": "s:7LinkKit13GithubReleaseV"
+ }
+ ],
+ "usr": "s:Sa"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:s6ResultO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvgZ",
- "mangledName": "$s7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA0C7ReleaseVGs5Error_pGc_tF",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV24loadAvailableSDKVersions17completionHandleryys6ResultOySayAA0C7ReleaseVGs5Error_pGc_tF",
+ "moduleName": "LinkKit",
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Function",
- "name": "from",
- "printedName": "from(_:_:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Link_Workflow_Nodes_Panes_SDKEvent",
- "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_SDKEvent",
- "usr": "s:13WorkflowProto05Link_A21_Nodes_Panes_SDKEventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "GithubSDKReleaseLoader",
+ "printedName": "LinkKit.GithubSDKReleaseLoader",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A5EventV4fromyAC13WorkflowProto0a1_E21_Nodes_Panes_SDKEventV_SSSgtFZ",
- "mangledName": "$s7LinkKit0A5EventV4fromyAC13WorkflowProto0a1_E21_Nodes_Panes_SDKEventV_SSSgtFZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderVACycfc",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderVACycfc",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit22GithubSDKReleaseLoaderV",
+ "mangledName": "$s7LinkKit22GithubSDKReleaseLoaderV",
+ "moduleName": "LinkKit",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "SDKReleaseLoader",
+ "printedName": "SDKReleaseLoader",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP",
+ "mangledName": "$s7LinkKit16SDKReleaseLoaderP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkHandlerAction",
+ "printedName": "LinkHandlerAction",
+ "children": [
{
"kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "name": "composeMail",
+ "printedName": "composeMail(to:using:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
},
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A5EventV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit0A5EventV2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit0A13HandlerActionV11composeMail2to5usingy10Foundation3URLV_So16UIViewControllerCtFZ",
+ "mangledName": "$s7LinkKit0A13HandlerActionV11composeMail2to5usingy10Foundation3URLV_So16UIViewControllerCtFZ",
"moduleName": "LinkKit",
"static": true,
- "isFromExtension": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
"funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKLinkEvent",
- "printedName": "LinkKit.PLKLinkEvent",
- "usr": "c:objc(cs)PLKLinkEvent"
+ "name": "LinkHandlerAction",
+ "printedName": "LinkKit.LinkHandlerAction",
+ "usr": "s:7LinkKit0A13HandlerActionV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvp",
- "mangledName": "$s7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A13HandlerActionVACycfc",
+ "mangledName": "$s7LinkKit0A13HandlerActionVACycfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKLinkEvent",
- "printedName": "LinkKit.PLKLinkEvent",
- "usr": "c:objc(cs)PLKLinkEvent"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvg",
- "mangledName": "$s7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
+ "implicit": true,
+ "init_kind": "Designated"
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit0A5EventV",
- "mangledName": "$s7LinkKit0A5EventV",
+ "usr": "s:7LinkKit0A13HandlerActionV",
+ "mangledName": "$s7LinkKit0A13HandlerActionV",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "ConfigurationError",
- "printedName": "ConfigurationError",
+ "name": "RateLimitErrorCode",
+ "printedName": "RateLimitErrorCode",
"children": [
{
"kind": "Var",
- "name": "malformedClientID",
- "printedName": "malformedClientID",
+ "name": "accountsLimit",
+ "printedName": "accountsLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18085,56 +17620,39 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO17malformedClientIDyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO17malformedClientIDyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "missingAuthorization",
- "printedName": "missingAuthorization",
+ "name": "additionLimit",
+ "printedName": "additionLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18142,56 +17660,79 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO20missingAuthorizationyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO20missingAuthorizationyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "noProduct",
- "printedName": "noProduct",
+ "name": "authLimit",
+ "printedName": "authLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04authD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "identityLimit",
+ "printedName": "identityLimit",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18199,56 +17740,79 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO9noProductyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO9noProductyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "invalidOptionValue",
- "printedName": "invalidOptionValue",
+ "name": "incomeLimit",
+ "printedName": "incomeLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "itemGetLimit",
+ "printedName": "itemGetLimit",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18256,56 +17820,79 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO18invalidOptionValueyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO18invalidOptionValueyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "invalidOptionCombination",
- "printedName": "invalidOptionCombination",
+ "name": "rateLimit",
+ "printedName": "rateLimit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "transactionsLimit",
+ "printedName": "transactionsLimit",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18313,56 +17900,52 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO24invalidOptionCombinationyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO24invalidOptionCombinationyACSS_tcACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD0yA2CmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "invalidToken",
- "printedName": "invalidToken",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ConfigurationError.Type) -> (Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(LinkKit.RateLimitErrorCode.Type) -> (Swift.String) -> LinkKit.RateLimitErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ConfigurationError",
+ "printedName": "(Swift.String) -> LinkKit.RateLimitErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(message: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ConfigurationError.Type",
+ "printedName": "LinkKit.RateLimitErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
}
]
}
@@ -18370,14 +17953,41 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18ConfigurationErrorO12invalidTokenyACSS_tcACmF",
- "mangledName": "$s7LinkKit18ConfigurationErrorO12invalidTokenyACSS_tcACmF",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO7unknownyACSScACmF",
"moduleName": "LinkKit"
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RateLimitErrorCode",
+ "printedName": "LinkKit.RateLimitErrorCode",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO6stringACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
{
"kind": "Var",
- "name": "message",
- "printedName": "message",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
@@ -18387,9 +17997,12 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18ConfigurationErrorO7messageSSvp",
- "mangledName": "$s7LinkKit18ConfigurationErrorO7messageSSvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
"accessors": [
{
"kind": "Accessor",
@@ -18404,8 +18017,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18ConfigurationErrorO7messageSSvg",
- "mangledName": "$s7LinkKit18ConfigurationErrorO7messageSSvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
"accessorKind": "get"
}
@@ -18413,21 +18026,28 @@
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "accountsLimitString",
+ "printedName": "accountsLimitString",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovp",
- "mangledName": "$s7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvpZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18436,37 +18056,48 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovg",
- "mangledName": "$s7LinkKit18ConfigurationErrorO6toObjCAA08PLKPlaidcD0Ovg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "embeddedNSError",
- "printedName": "embeddedNSError",
+ "name": "additionLimitString",
+ "printedName": "additionLimitString",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvp",
- "mangledName": "$s7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD6StringSSvpZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18475,189 +18106,148 @@
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
"declKind": "Accessor",
- "usr": "s:7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvg",
- "mangledName": "$s7LinkKit18ConfigurationErrorO15embeddedNSErrorSo0F0Cvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD6StringSSvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit18ConfigurationErrorO",
- "mangledName": "$s7LinkKit18ConfigurationErrorO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Environment",
- "printedName": "Environment",
- "children": [
{
"kind": "Var",
- "name": "production",
- "printedName": "production",
+ "name": "authLimitString",
+ "printedName": "authLimitString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Environment.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit11EnvironmentO10productionyA2CmF",
- "mangledName": "$s7LinkKit11EnvironmentO10productionyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04authD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "development",
- "printedName": "development",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Environment.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04authD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD6StringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit11EnvironmentO11developmentyA2CmF",
- "mangledName": "$s7LinkKit11EnvironmentO11developmentyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "sandbox",
- "printedName": "sandbox",
+ "name": "identityLimitString",
+ "printedName": "identityLimitString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD6StringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Environment.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD6StringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit11EnvironmentO7sandboxyA2CmF",
- "mangledName": "$s7LinkKit11EnvironmentO7sandboxyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "baseURL",
- "printedName": "baseURL",
+ "name": "incomeLimitString",
+ "printedName": "incomeLimitString",
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvp",
- "mangledName": "$s7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18666,23 +18256,28 @@
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvg",
- "mangledName": "$s7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "itemGetLimitString",
+ "printedName": "itemGetLimitString",
"children": [
{
"kind": "TypeNominal",
@@ -18692,12 +18287,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11EnvironmentO11descriptionSSvp",
- "mangledName": "$s7LinkKit11EnvironmentO11descriptionSSvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18712,62 +18312,42 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11EnvironmentO11descriptionSSvg",
- "mangledName": "$s7LinkKit11EnvironmentO11descriptionSSvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11EnvironmentO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit11EnvironmentO2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
{
"kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
+ "name": "rateLimitString",
+ "printedName": "rateLimitString",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11EnvironmentO9hashValueSivp",
- "mangledName": "$s7LinkKit11EnvironmentO9hashValueSivp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD6StringSSvpZ",
"moduleName": "LinkKit",
- "implicit": true,
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18776,49 +18356,28 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11EnvironmentO9hashValueSivg",
- "mangledName": "$s7LinkKit11EnvironmentO9hashValueSivg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11EnvironmentO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit11EnvironmentO4hash4intoys6HasherVz_tF",
- "moduleName": "LinkKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
{
"kind": "Var",
- "name": "valueForQueryString",
- "printedName": "valueForQueryString",
+ "name": "transactionsLimitString",
+ "printedName": "transactionsLimitString",
"children": [
{
"kind": "TypeNominal",
@@ -18828,13 +18387,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11EnvironmentO19valueForQueryStringSSvp",
- "mangledName": "$s7LinkKit11EnvironmentO19valueForQueryStringSSvp",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvpZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "isFromExtension": true,
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -18849,65 +18412,88 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11EnvironmentO19valueForQueryStringSSvg",
- "mangledName": "$s7LinkKit11EnvironmentO19valueForQueryStringSSvg",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvgZ",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
- "kind": "Function",
- "name": "fuzzyMatches",
- "printedName": "fuzzyMatches(linkToken:)",
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKRateLimitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKRateLimitErrorCode",
+ "printedName": "LinkKit.PLKRateLimitErrorCode",
+ "usr": "c:@E@PLKRateLimitErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit11EnvironmentO12fuzzyMatches9linkTokenSbSS_tF",
- "mangledName": "$s7LinkKit11EnvironmentO12fuzzyMatches9linkTokenSbSS_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvp",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
"isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKRateLimitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKRateLimitErrorCode",
+ "printedName": "LinkKit.PLKRateLimitErrorCode",
+ "usr": "c:@E@PLKRateLimitErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvg",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit11EnvironmentO",
- "mangledName": "$s7LinkKit11EnvironmentO",
+ "usr": "s:7LinkKit18RateLimitErrorCodeO",
+ "mangledName": "$s7LinkKit18RateLimitErrorCodeO",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
},
{
"kind": "Conformance",
@@ -18915,412 +18501,111 @@
"printedName": "CustomStringConvertible",
"usr": "s:s23CustomStringConvertibleP",
"mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "Product",
- "printedName": "Product",
+ "name": "SemanticVersion",
+ "printedName": "SemanticVersion",
"children": [
{
- "kind": "Var",
- "name": "assets",
- "printedName": "assets",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(versionString:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.SemanticVersion?",
"children": [
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO6assetsyA2CmF",
- "mangledName": "$s7LinkKit7ProductO6assetsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "auth",
- "printedName": "auth",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO4authyA2CmF",
- "mangledName": "$s7LinkKit7ProductO4authyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "depositSwitch",
- "printedName": "depositSwitch",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO13depositSwitchyA2CmF",
- "mangledName": "$s7LinkKit7ProductO13depositSwitchyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identity",
- "printedName": "identity",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO8identityyA2CmF",
- "mangledName": "$s7LinkKit7ProductO8identityyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "income",
- "printedName": "income",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO6incomeyA2CmF",
- "mangledName": "$s7LinkKit7ProductO6incomeyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "investments",
- "printedName": "investments",
- "children": [
+ ],
+ "usr": "s:Sq"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO11investmentsyA2CmF",
- "mangledName": "$s7LinkKit7ProductO11investmentsyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit15SemanticVersionV13versionStringACSgSS_tcfc",
+ "mangledName": "$s7LinkKit15SemanticVersionV13versionStringACSgSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "liabilities",
- "printedName": "liabilities",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO11liabilitiesyA2CmF",
- "mangledName": "$s7LinkKit7ProductO11liabilitiesyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "liabilitiesReport",
- "printedName": "liabilitiesReport",
+ "name": "versionString",
+ "printedName": "versionString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO17liabilitiesReportyA2CmF",
- "mangledName": "$s7LinkKit7ProductO17liabilitiesReportyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit15SemanticVersionV13versionStringSSvp",
+ "mangledName": "$s7LinkKit15SemanticVersionV13versionStringSSvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "paymentInitiation",
- "printedName": "paymentInitiation",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
- }
- ]
- }
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO17paymentInitiationyA2CmF",
- "mangledName": "$s7LinkKit7ProductO17paymentInitiationyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "transactions",
- "printedName": "transactions",
- "children": [
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Product.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit15SemanticVersionV13versionStringSSvg",
+ "mangledName": "$s7LinkKit15SemanticVersionV13versionStringSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit7ProductO12transactionsyA2CmF",
- "mangledName": "$s7LinkKit7ProductO12transactionsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
@@ -19336,8 +18621,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO11descriptionSSvp",
- "mangledName": "$s7LinkKit7ProductO11descriptionSSvp",
+ "usr": "s:7LinkKit15SemanticVersionV11descriptionSSvp",
+ "mangledName": "$s7LinkKit15SemanticVersionV11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -19356,8 +18641,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO11descriptionSSvg",
- "mangledName": "$s7LinkKit7ProductO11descriptionSSvg",
+ "usr": "s:7LinkKit15SemanticVersionV11descriptionSSvg",
+ "mangledName": "$s7LinkKit15SemanticVersionV11descriptionSSvg",
"moduleName": "LinkKit",
"accessorKind": "get"
}
@@ -19365,28 +18650,24 @@
},
{
"kind": "Var",
- "name": "assetsString",
- "printedName": "assetsString",
+ "name": "major",
+ "printedName": "major",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO12assetsStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO12assetsStringSSvpZ",
+ "usr": "s:7LinkKit15SemanticVersionV5majorSivp",
+ "mangledName": "$s7LinkKit15SemanticVersionV5majorSivp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -19395,48 +18676,39 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO12assetsStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO12assetsStringSSvgZ",
+ "usr": "s:7LinkKit15SemanticVersionV5majorSivg",
+ "mangledName": "$s7LinkKit15SemanticVersionV5majorSivg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "authString",
- "printedName": "authString",
+ "name": "minor",
+ "printedName": "minor",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO10authStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO10authStringSSvpZ",
+ "usr": "s:7LinkKit15SemanticVersionV5minorSivp",
+ "mangledName": "$s7LinkKit15SemanticVersionV5minorSivp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -19445,48 +18717,39 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO10authStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO10authStringSSvgZ",
+ "usr": "s:7LinkKit15SemanticVersionV5minorSivg",
+ "mangledName": "$s7LinkKit15SemanticVersionV5minorSivg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "depositSwitchString",
- "printedName": "depositSwitchString",
+ "name": "patch",
+ "printedName": "patch",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO19depositSwitchStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO19depositSwitchStringSSvpZ",
+ "usr": "s:7LinkKit15SemanticVersionV5patchSivp",
+ "mangledName": "$s7LinkKit15SemanticVersionV5patchSivp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -19495,378 +18758,125 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO19depositSwitchStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO19depositSwitchStringSSvgZ",
+ "usr": "s:7LinkKit15SemanticVersionV5patchSivg",
+ "mangledName": "$s7LinkKit15SemanticVersionV5patchSivg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "identityString",
- "printedName": "identityString",
+ "name": "components",
+ "printedName": "components",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO14identityStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO14identityStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Array",
+ "printedName": "[Swift.Int]",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO14identityStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO14identityStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "incomeString",
- "printedName": "incomeString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "usr": "s:Sa"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7ProductO12incomeStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO12incomeStringSSvpZ",
+ "usr": "s:7LinkKit15SemanticVersionV10components33_5723E2495FAE01EBDD8BE3861CED1ED5LLSaySiGvp",
+ "mangledName": "$s7LinkKit15SemanticVersionV10components33_5723E2495FAE01EBDD8BE3861CED1ED5LLSaySiGvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
+ "fixedbinaryorder": 1,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO12incomeStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO12incomeStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
- "kind": "Var",
- "name": "investmentsString",
- "printedName": "investmentsString",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO17investmentsStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO17investmentsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO17investmentsStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO17investmentsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "liabilitiesString",
- "printedName": "liabilitiesString",
- "children": [
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO17liabilitiesStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO17liabilitiesStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO17liabilitiesStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO17liabilitiesStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "liabilitiesReportString",
- "printedName": "liabilitiesReportString",
- "children": [
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO23liabilitiesReportStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO23liabilitiesReportStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit15SemanticVersionV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit15SemanticVersionV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO23liabilitiesReportStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO23liabilitiesReportStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "paymentInitiationString",
- "printedName": "paymentInitiationString",
+ "kind": "Function",
+ "name": "<",
+ "printedName": "<(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO23paymentInitiationStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO23paymentInitiationStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO23paymentInitiationStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO23paymentInitiationStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "transactionsString",
- "printedName": "transactionsString",
- "children": [
+ "kind": "TypeNominal",
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO18transactionsStringSSvpZ",
- "mangledName": "$s7LinkKit7ProductO18transactionsStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit15SemanticVersionV1loiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit15SemanticVersionV1loiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO18transactionsStringSSvgZ",
- "mangledName": "$s7LinkKit7ProductO18transactionsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "name": ">",
+ "printedName": ">(_:_:)",
"children": [
{
"kind": "TypeNominal",
@@ -19876,154 +18886,34 @@
},
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
},
{
"kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit7ProductO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit7ProductO2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit15SemanticVersionV1goiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit15SemanticVersionV1goiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO9hashValueSivp",
- "mangledName": "$s7LinkKit7ProductO9hashValueSivp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO9hashValueSivg",
- "mangledName": "$s7LinkKit7ProductO9hashValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
+ "declAttributes": [
+ "AccessControl"
],
- "declKind": "Func",
- "usr": "s:7LinkKit7ProductO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit7ProductO4hash4intoys6HasherVz_tF",
- "moduleName": "LinkKit",
- "implicit": true,
"funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "allCases",
- "printedName": "allCases",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Product]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7ProductO8allCasesSayACGvpZ",
- "mangledName": "$s7LinkKit7ProductO8allCasesSayACGvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Product]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7ProductO8allCasesSayACGvgZ",
- "mangledName": "$s7LinkKit7ProductO8allCasesSayACGvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "accessorKind": "get"
- }
- ]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit7ProductO",
- "mangledName": "$s7LinkKit7ProductO",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit15SemanticVersionV",
+ "mangledName": "$s7LinkKit15SemanticVersionV",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"conformances": [
{
@@ -20035,10 +18925,10 @@
},
{
"kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
},
{
"kind": "Conformance",
@@ -20049,887 +18939,1018 @@
},
{
"kind": "Conformance",
- "name": "CaseIterable",
- "printedName": "CaseIterable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "AllCases",
- "printedName": "AllCases",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Product]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Product",
- "printedName": "LinkKit.Product",
- "usr": "s:7LinkKit7ProductO"
- }
- ],
- "usr": "s:Sa"
- }
- ]
- }
- ],
- "usr": "s:s12CaseIterableP",
- "mangledName": "$ss12CaseIterableP"
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
{
"kind": "TypeDecl",
- "name": "VerificationStatus",
- "printedName": "VerificationStatus",
+ "name": "EmbeddedSearchModuleView",
+ "printedName": "EmbeddedSearchModuleView",
"children": [
{
- "kind": "Var",
- "name": "pendingAutomaticVerification",
- "printedName": "pendingAutomaticVerification",
+ "kind": "TypeDecl",
+ "name": "Style",
+ "printedName": "Style",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
+ "kind": "Var",
+ "name": "primary",
+ "printedName": "primary",
"children": [
{
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.VerificationStatus.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18VerificationStatusO016pendingAutomaticC0yA2CmF",
- "mangledName": "$s7LinkKit18VerificationStatusO016pendingAutomaticC0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "pendingManualVerification",
- "printedName": "pendingManualVerification",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.VerificationStatus.Type",
- "children": [
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ },
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Metatype",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18VerificationStatusO013pendingManualC0yA2CmF",
- "mangledName": "$s7LinkKit18VerificationStatusO013pendingManualC0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "manuallyVerified",
- "printedName": "manuallyVerified",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO7primaryyA2EmF",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO7primaryyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
+ "kind": "Var",
+ "name": "secondary",
+ "printedName": "secondary",
"children": [
{
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.VerificationStatus.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18VerificationStatusO16manuallyVerifiedyA2CmF",
- "mangledName": "$s7LinkKit18VerificationStatusO16manuallyVerifiedyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9secondaryyA2EmF",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9secondaryyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.VerificationStatus.Type) -> (Swift.String) -> LinkKit.VerificationStatus",
+ "kind": "Var",
+ "name": "tertiary",
+ "printedName": "tertiary",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String) -> LinkKit.VerificationStatus",
+ "printedName": "(LinkKit.EmbeddedSearchModuleView.Style.Type) -> LinkKit.EmbeddedSearchModuleView.Style",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ }
+ ]
}
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8tertiaryyA2EmF",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8tertiaryyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 2
+ },
+ {
+ "kind": "Var",
+ "name": "textKind",
+ "printedName": "textKind",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.VerificationStatus.Type",
+ "name": "TextKind",
+ "printedName": "Threads.TextKind",
+ "usr": "s:7Threads8TextKindO"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovp",
+ "moduleName": "LinkKit",
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "TextKind",
+ "printedName": "Threads.TextKind",
+ "usr": "s:7Threads8TextKindO"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovg",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO8textKind7Threads04TextI0Ovg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit18VerificationStatusO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit18VerificationStatusO7unknownyACSScACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
},
{
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18VerificationStatusO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit18VerificationStatusO4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.VerificationStatus?",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
}
],
- "usr": "s:Sq"
+ "declKind": "Func",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO2eeoiySbAE_AEtFZ",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO2eeoiySbAE_AEtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18VerificationStatusO8rawValueACSgSS_tcfc",
- "mangledName": "$s7LinkKit18VerificationStatusO8rawValueACSgSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18VerificationStatusO11descriptionSSvp",
- "mangledName": "$s7LinkKit18VerificationStatusO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "Var",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18VerificationStatusO11descriptionSSvg",
- "mangledName": "$s7LinkKit18VerificationStatusO11descriptionSSvg",
+ "declKind": "Var",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivp",
"moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivg",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO9hashValueSivg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "Function",
+ "name": "hash",
+ "printedName": "hash(into:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO4hash4intoys6HasherVz_tF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18VerificationStatusO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit18VerificationStatusO6encode2toys7Encoder_p_tKF",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5StyleO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
],
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
},
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(viewModel:style:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "EmbeddedSearchModuleView",
+ "printedName": "LinkKit.EmbeddedSearchModuleView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView"
},
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "EmbeddedSearchModuleViewModel",
+ "printedName": "Workflow.EmbeddedSearchModuleViewModel",
+ "usr": "s:8Workflow29EmbeddedSearchModuleViewModelC"
},
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18VerificationStatusO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit18VerificationStatusO2eeoiySbAC_ACtFZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC9viewModel5styleAC8Workflow0cdefH0C_AC5StyleOtcfc",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC9viewModel5styleAC8Workflow0cdefH0C_AC5StyleOtcfc",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "declAttributes": [
+ "Custom",
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKVerificationStatus",
- "printedName": "LinkKit.PLKVerificationStatus",
- "usr": "c:objc(cs)PLKVerificationStatus"
+ "name": "EmbeddedSearchModuleViewModel",
+ "printedName": "Workflow.EmbeddedSearchModuleViewModel",
+ "usr": "s:8Workflow29EmbeddedSearchModuleViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvp",
- "mangledName": "$s7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC9viewModel33_8B1E8952538FE6432CBE3AC02A54F6CBLL8Workflow0cdefH0Cvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC9viewModel33_8B1E8952538FE6432CBE3AC02A54F6CBLL8Workflow0cdefH0Cvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKVerificationStatus",
- "printedName": "LinkKit.PLKVerificationStatus",
- "usr": "c:objc(cs)PLKVerificationStatus"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvg",
- "mangledName": "$s7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit18VerificationStatusO",
- "mangledName": "$s7LinkKit18VerificationStatusO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Account",
- "printedName": "Account",
- "children": [
{
"kind": "Var",
- "name": "id",
- "printedName": "id",
+ "name": "style",
+ "printedName": "style",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Style",
+ "printedName": "LinkKit.EmbeddedSearchModuleView.Style",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5StyleO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV2idSSvp",
- "mangledName": "$s7LinkKit7AccountV2idSSvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC5style33_8B1E8952538FE6432CBE3AC02A54F6CBLLAC5StyleOvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5style33_8B1E8952538FE6432CBE3AC02A54F6CBLLAC5StyleOvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "fixedbinaryorder": 1,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV2idSSvg",
- "mangledName": "$s7LinkKit7AccountV2idSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "name",
- "printedName": "name",
+ "name": "hStack",
+ "printedName": "hStack",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "UIStackView",
+ "printedName": "UIKit.UIStackView",
+ "usr": "c:objc(cs)UIStackView"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV4nameSSvp",
- "mangledName": "$s7LinkKit7AccountV4nameSSvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC6hStack33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo07UIStackF0Cvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC6hStack33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo07UIStackF0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "fixedbinaryorder": 2,
"isLet": true,
- "hasStorage": true,
- "accessors": [
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "tapGesture",
+ "printedName": "tapGesture",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV4nameSSvg",
- "mangledName": "$s7LinkKit7AccountV4nameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "UITapGestureRecognizer",
+ "printedName": "UIKit.UITapGestureRecognizer",
+ "usr": "c:objc(cs)UITapGestureRecognizer"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC10tapGesture33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo05UITapH10RecognizerCvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC10tapGesture33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo05UITapH10RecognizerCvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 3,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "mask",
- "printedName": "mask",
+ "name": "$__lazy_storage_$_leadingAsset",
+ "printedName": "$__lazy_storage_$_leadingAsset",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Threads.RenderedAsset?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "RenderedAsset",
+ "printedName": "Threads.RenderedAsset",
+ "usr": "c:@M@Threads@objc(cs)RenderedAsset"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV4maskSSSgvp",
- "mangledName": "$s7LinkKit7AccountV4maskSSSgvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC30$__lazy_storage_$_leadingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC30$__lazy_storage_$_leadingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV4maskSSSgvg",
- "mangledName": "$s7LinkKit7AccountV4maskSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
+ "fixedbinaryorder": 4,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "subtype",
- "printedName": "subtype",
+ "name": "$__lazy_storage_$_text",
+ "printedName": "$__lazy_storage_$_text",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "Optional",
+ "printedName": "UIKit.UILabel?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UILabel",
+ "printedName": "UIKit.UILabel",
+ "usr": "c:objc(cs)UILabel"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV7subtypeAA0C7SubtypeOvp",
- "mangledName": "$s7LinkKit7AccountV7subtypeAA0C7SubtypeOvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC22$__lazy_storage_$_text33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC22$__lazy_storage_$_text33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 5,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "$__lazy_storage_$_secondaryText",
+ "printedName": "$__lazy_storage_$_secondaryText",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "UIKit.UILabel?",
"children": [
{
"kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
+ "name": "UILabel",
+ "printedName": "UIKit.UILabel",
+ "usr": "c:objc(cs)UILabel"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV7subtypeAA0C7SubtypeOvg",
- "mangledName": "$s7LinkKit7AccountV7subtypeAA0C7SubtypeOvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_secondaryText33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_secondaryText33_8B1E8952538FE6432CBE3AC02A54F6CBLLSo7UILabelCSgvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "HasStorage",
+ "Final"
+ ],
+ "fixedbinaryorder": 6,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "verificationStatus",
- "printedName": "verificationStatus",
+ "name": "$__lazy_storage_$_trailingAsset",
+ "printedName": "$__lazy_storage_$_trailingAsset",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.VerificationStatus?",
+ "printedName": "Threads.RenderedAsset?",
"children": [
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "RenderedAsset",
+ "printedName": "Threads.RenderedAsset",
+ "usr": "c:@M@Threads@objc(cs)RenderedAsset"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvp",
- "mangledName": "$s7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvp",
+ "usr": "s:7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_trailingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC31$__lazy_storage_$_trailingAsset33_8B1E8952538FE6432CBE3AC02A54F6CBLL7Threads08RenderedJ0CSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "Final"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.VerificationStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvg",
- "mangledName": "$s7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(id:name:mask:subtype:verificationStatus:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
- },
+ "fixedbinaryorder": 7,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(frame:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "EmbeddedSearchModuleView",
+ "printedName": "LinkKit.EmbeddedSearchModuleView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
+ "name": "CGRect",
+ "printedName": "CoreFoundation.CGRect",
+ "usr": "c:@S@CGRect"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView(im)initWithFrame:",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC5frameACSo6CGRectV_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithFrame:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchModuleView",
+ "mangledName": "$s7LinkKit24EmbeddedSearchModuleViewC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIView",
+ "superclassNames": [
+ "UIKit.UIView",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "__DefaultCustomPlaygroundQuickLookable",
+ "printedName": "__DefaultCustomPlaygroundQuickLookable",
+ "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
+ "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "LayoutArea",
+ "printedName": "LayoutArea",
+ "usr": "s:9AppCoreUI10LayoutAreaP",
+ "mangledName": "$s9AppCoreUI10LayoutAreaP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ApiErrorCode",
+ "printedName": "ApiErrorCode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "internalServerError",
+ "printedName": "internalServerError",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ApiErrorCode.Type) -> LinkKit.ApiErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "AccountSubtype",
- "printedName": "LinkKit.AccountSubtype",
- "usr": "s:7LinkKit14AccountSubtypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.VerificationStatus?",
- "children": [
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ },
{
"kind": "TypeNominal",
- "name": "VerificationStatus",
- "printedName": "LinkKit.VerificationStatus",
- "usr": "s:7LinkKit18VerificationStatusO"
+ "name": "Metatype",
+ "printedName": "LinkKit.ApiErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ }
+ ]
}
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit7AccountV2id4name4mask7subtype18verificationStatusACSS_S2SSgAA0C7SubtypeOAA012VerificationI0OSgtcfc",
- "mangledName": "$s7LinkKit7AccountV2id4name4mask7subtype18verificationStatusACSS_S2SSgAA0C7SubtypeOAA012VerificationI0OSgtcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD0yA2CmF",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD0yA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Var",
+ "name": "plannedMaintenance",
+ "printedName": "plannedMaintenance",
"children": [
{
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ApiErrorCode.Type) -> LinkKit.ApiErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ApiErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit7AccountV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit7AccountV4fromACs7Decoder_p_tKcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit12ApiErrorCodeO18plannedMaintenanceyA2CmF",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO18plannedMaintenanceyA2CmF",
"moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ApiErrorCode.Type) -> (Swift.String) -> LinkKit.ApiErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ApiErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ApiErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7AccountV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit7AccountV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit12ApiErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
+ "name": "ApiErrorCode",
+ "printedName": "LinkKit.ApiErrorCode",
+ "usr": "s:7LinkKit12ApiErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7AccountV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit7AccountV2eeoiySbAC_ACtFZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit12ApiErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO6stringACSS_tcfc",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAccount",
- "printedName": "LinkKit.PLKAccount",
- "usr": "c:objc(cs)PLKAccount"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit7AccountV6toObjCSo10PLKAccountCvp",
- "mangledName": "$s7LinkKit7AccountV6toObjCSo10PLKAccountCvp",
+ "usr": "s:7LinkKit12ApiErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
"accessors": [
{
"kind": "Accessor",
@@ -20938,79 +19959,42 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAccount",
- "printedName": "LinkKit.PLKAccount",
- "usr": "c:objc(cs)PLKAccount"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit7AccountV6toObjCSo10PLKAccountCvg",
- "mangledName": "$s7LinkKit7AccountV6toObjCSo10PLKAccountCvg",
+ "usr": "s:7LinkKit12ApiErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
- "isFromExtension": true,
"accessorKind": "get"
}
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit7AccountV",
- "mangledName": "$s7LinkKit7AccountV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SuccessMetadata",
- "printedName": "SuccessMetadata",
- "children": [
{
"kind": "Var",
- "name": "institution",
- "printedName": "institution",
+ "name": "internalServerErrorString",
+ "printedName": "internalServerErrorString",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvp",
+ "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD6StringSSvpZ",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD6StringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -21020,92 +20004,99 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvg",
+ "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD6StringSSvgZ",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD6StringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "plannedMaintenanceString",
+ "printedName": "plannedMaintenanceString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvpZ",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvs",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvs",
+ "usr": "s:7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvgZ",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvM",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institutionAA11InstitutionVvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "accounts",
- "printedName": "accounts",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Account]",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKApiErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
+ "name": "PLKApiErrorCode",
+ "printedName": "LinkKit.PLKApiErrorCode",
+ "usr": "c:@E@PLKApiErrorCode"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvp",
+ "usr": "s:7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvp",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -21114,99 +20105,151 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Account]",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKApiErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
+ "name": "PLKApiErrorCode",
+ "printedName": "LinkKit.PLKApiErrorCode",
+ "usr": "c:@E@PLKApiErrorCode"
}
],
- "usr": "s:Sa"
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvg",
+ "usr": "s:7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvg",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvg",
"moduleName": "LinkKit",
- "implicit": true,
+ "isFromExtension": true,
"accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Account]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvs",
- "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvM",
- "mangledName": "$s7LinkKit15SuccessMetadataV8accountsSayAA7AccountVGvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit12ApiErrorCodeO",
+ "mangledName": "$s7LinkKit12ApiErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ComponentPaneRenderable",
+ "printedName": "ComponentPaneRenderable",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "renderComponentPane",
+ "printedName": "renderComponentPane()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ComponentPaneViewModel",
+ "printedName": "LinkKit.ComponentPaneViewModel",
+ "usr": "s:7LinkKit22ComponentPaneViewModelO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit23ComponentPaneRenderableP06rendercD0AA0cD9ViewModelOyF",
+ "mangledName": "$s7LinkKit23ComponentPaneRenderableP06rendercD0AA0cD9ViewModelOyF",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.ComponentPaneRenderable>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit23ComponentPaneRenderableP",
+ "mangledName": "$s7LinkKit23ComponentPaneRenderableP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PaneFactory",
+ "printedName": "PaneFactory",
+ "children": [
{
"kind": "Var",
- "name": "linkSessionID",
- "printedName": "linkSessionID",
+ "name": "log",
+ "printedName": "log",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvp",
+ "usr": "s:7LinkKit11PaneFactoryV3log3LogAEVvp",
+ "mangledName": "$s7LinkKit11PaneFactoryV3log3LogAEVvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasStorage",
"AccessControl",
"RawDocComment"
],
+ "fixedbinaryorder": 0,
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -21216,541 +20259,214 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvg",
+ "usr": "s:7LinkKit11PaneFactoryV3log3LogAEVvg",
+ "mangledName": "$s7LinkKit11PaneFactoryV3log3LogAEVvg",
"moduleName": "LinkKit",
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "paneViewController",
+ "printedName": "paneViewController(with:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvs",
- "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV13linkSessionIDSSvM",
- "mangledName": "$s7LinkKit15SuccessMetadataV13linkSessionIDSSvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "PaneViewModel",
+ "printedName": "Workflow.PaneViewModel",
+ "usr": "s:8Workflow13PaneViewModelO"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit11PaneFactoryV18paneViewController4withSo06UIViewG0C8Workflow0cF5ModelO_tF",
+ "mangledName": "$s7LinkKit11PaneFactoryV18paneViewController4withSo06UIViewG0C8Workflow0cF5ModelO_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "metadataJSON",
- "printedName": "metadataJSON",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(log:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "PaneFactory",
+ "printedName": "LinkKit.PaneFactory",
+ "usr": "s:7LinkKit11PaneFactoryV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit11PaneFactoryV3logAC3LogAEV_tcfc",
+ "mangledName": "$s7LinkKit11PaneFactoryV3logAC3LogAEV_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit11PaneFactoryV",
+ "mangledName": "$s7LinkKit11PaneFactoryV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ExitStatus",
+ "printedName": "ExitStatus",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "requiresQuestions",
+ "printedName": "requiresQuestions",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit10ExitStatusO17requiresQuestionsyA2CmF",
+ "mangledName": "$s7LinkKit10ExitStatusO17requiresQuestionsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "requiresSelections",
+ "printedName": "requiresSelections",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitStatus.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit10ExitStatusO18requiresSelectionsyA2CmF",
+ "mangledName": "$s7LinkKit10ExitStatusO18requiresSelectionsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "requiresCode",
+ "printedName": "requiresCode",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitStatus.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvs",
- "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV12metadataJSONSSSgvM",
- "mangledName": "$s7LinkKit15SuccessMetadataV12metadataJSONSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(institution:accounts:linkSessionID:metadataJSON:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Account]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Account",
- "printedName": "LinkKit.Account",
- "usr": "s:7LinkKit7AccountV"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit15SuccessMetadataV11institution8accounts13linkSessionID12metadataJSONAcA11InstitutionV_SayAA7AccountVGS2SSgtcfc",
- "mangledName": "$s7LinkKit15SuccessMetadataV11institution8accounts13linkSessionID12metadataJSONAcA11InstitutionV_SayAA7AccountVGS2SSgtcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit15SuccessMetadataV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit15SuccessMetadataV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SuccessMetadataV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit15SuccessMetadataV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "from",
- "printedName": "from(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Metadata",
- "printedName": "WorkflowProto.Link_Workflow_Primitives_SDKResult.Metadata",
- "usr": "s:13WorkflowProto05Link_A21_Primitives_SDKResultV8MetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SuccessMetadataV4fromyAC13WorkflowProto0a1_F21_Primitives_SDKResultV0D0V_SSSgtFZ",
- "mangledName": "$s7LinkKit15SuccessMetadataV4fromyAC13WorkflowProto0a1_F21_Primitives_SDKResultV0D0V_SSSgtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "SuccessMetadata",
- "printedName": "LinkKit.SuccessMetadata",
- "usr": "s:7LinkKit15SuccessMetadataV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit15SuccessMetadataV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit15SuccessMetadataV2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKSuccessMetadata",
- "printedName": "LinkKit.PLKSuccessMetadata",
- "usr": "c:objc(cs)PLKSuccessMetadata"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvp",
- "mangledName": "$s7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKSuccessMetadata",
- "printedName": "LinkKit.PLKSuccessMetadata",
- "usr": "c:objc(cs)PLKSuccessMetadata"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvg",
- "mangledName": "$s7LinkKit15SuccessMetadataV6toObjCSo010PLKSuccessD0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit15SuccessMetadataV",
- "mangledName": "$s7LinkKit15SuccessMetadataV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ExitStatus",
- "printedName": "ExitStatus",
- "children": [
- {
- "kind": "Var",
- "name": "requiresQuestions",
- "printedName": "requiresQuestions",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit10ExitStatusO17requiresQuestionsyA2CmF",
- "mangledName": "$s7LinkKit10ExitStatusO17requiresQuestionsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "requiresSelections",
- "printedName": "requiresSelections",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit10ExitStatusO18requiresSelectionsyA2CmF",
- "mangledName": "$s7LinkKit10ExitStatusO18requiresSelectionsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "requiresCode",
- "printedName": "requiresCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitStatus.Type) -> LinkKit.ExitStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ]
+ ]
}
]
}
@@ -22301,28 +21017,44 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "ExitError",
- "printedName": "ExitError",
+ "name": "EventMetadata",
+ "printedName": "EventMetadata",
"children": [
{
"kind": "Var",
- "name": "errorCode",
- "printedName": "errorCode",
+ "name": "accountNumberMask",
+ "printedName": "accountNumberMask",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovp",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovp",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -22336,14 +21068,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovg",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovg",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22360,14 +21100,22 @@
},
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovs",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovs",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -22384,8 +21132,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0OvM",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0OvM",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -22394,21 +21142,30 @@
},
{
"kind": "Var",
- "name": "errorMessage",
- "printedName": "errorMessage",
+ "name": "errorCode",
+ "printedName": "errorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvp",
- "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvp",
+ "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -22422,14 +21179,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvg",
- "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvg",
+ "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22446,14 +21211,22 @@
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvs",
- "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvs",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -22470,8 +21243,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvM",
- "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvM",
+ "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -22480,8 +21253,8 @@
},
{
"kind": "Var",
- "name": "displayMessage",
- "printedName": "displayMessage",
+ "name": "errorMessage",
+ "printedName": "errorMessage",
"children": [
{
"kind": "TypeNominal",
@@ -22499,8 +21272,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvp",
- "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -22531,8 +21304,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvg",
- "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22563,8 +21336,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvs",
- "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -22581,8 +21354,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvM",
- "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -22591,32 +21364,33 @@
},
{
"kind": "Var",
- "name": "errorJSON",
- "printedName": "errorJSON",
+ "name": "exitStatus",
+ "printedName": "exitStatus",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.ExitStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvp",
- "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"hasStorage": true,
"accessors": [
@@ -22628,21 +21402,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.ExitStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvg",
- "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22660,21 +21434,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.ExitStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvs",
- "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -22691,8 +21465,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvM",
- "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -22700,28 +21474,10 @@
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(errorCode:errorMessage:displayMessage:errorJSON:)",
+ "kind": "Var",
+ "name": "institutionID",
+ "printedName": "institutionID",
"children": [
- {
- "kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
{
"kind": "TypeNominal",
"name": "Optional",
@@ -22734,223 +21490,126 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
"usr": "s:Sq"
- },
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9ExitErrorV9errorCode0E7Message07displayG00E4JSONAcA0cdF0O_S2SSgAJtcfc",
- "mangledName": "$s7LinkKit9ExitErrorV9errorCode0E7Message07displayG00E4JSONAcA0cdF0O_S2SSgAJtcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9ExitErrorV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit9ExitErrorV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ExitErrorV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit9ExitErrorV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
- {
- "kind": "TypeNominal",
- "name": "ExitError",
- "printedName": "LinkKit.ExitError",
- "usr": "s:7LinkKit9ExitErrorV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ExitErrorV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit9ExitErrorV2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit9ExitErrorV6toObjCSo7NSErrorCvp",
- "mangledName": "$s7LinkKit9ExitErrorV6toObjCSo7NSErrorCvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9ExitErrorV6toObjCSo7NSErrorCvg",
- "mangledName": "$s7LinkKit9ExitErrorV6toObjCSo7NSErrorCvg",
+ "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvM",
"moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ "implicit": true,
+ "accessorKind": "_modify"
}
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit9ExitErrorV",
- "mangledName": "$s7LinkKit9ExitErrorV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
},
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Institution",
- "printedName": "Institution",
- "children": [
{
"kind": "Var",
- "name": "id",
- "printedName": "id",
+ "name": "institutionName",
+ "printedName": "institutionName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11InstitutionV2idSSvp",
- "mangledName": "$s7LinkKit11InstitutionV2idSSvp",
+ "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -22964,14 +21623,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV2idSSvg",
- "mangledName": "$s7LinkKit11InstitutionV2idSSvg",
+ "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -22988,14 +21655,22 @@
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV2idSSvs",
- "mangledName": "$s7LinkKit11InstitutionV2idSSvs",
+ "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23012,8 +21687,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV2idSSvM",
- "mangledName": "$s7LinkKit11InstitutionV2idSSvM",
+ "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23022,21 +21697,30 @@
},
{
"kind": "Var",
- "name": "name",
- "printedName": "name",
+ "name": "institutionSearchQuery",
+ "printedName": "institutionSearchQuery",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11InstitutionV4nameSSvp",
- "mangledName": "$s7LinkKit11InstitutionV4nameSSvp",
+ "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
@@ -23050,14 +21734,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV4nameSSvg",
- "mangledName": "$s7LinkKit11InstitutionV4nameSSvg",
+ "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23074,14 +21766,22 @@
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV4nameSSvs",
- "mangledName": "$s7LinkKit11InstitutionV4nameSSvs",
+ "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23098,8 +21798,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV4nameSSvM",
- "mangledName": "$s7LinkKit11InstitutionV4nameSSvM",
+ "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23107,136 +21807,36 @@
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(id:name:)",
+ "kind": "Var",
+ "name": "isUpdateMode",
+ "printedName": "isUpdateMode",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit11InstitutionV2id4nameACSS_SStcfc",
- "mangledName": "$s7LinkKit11InstitutionV2id4nameACSS_SStcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit11InstitutionV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit11InstitutionV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11InstitutionV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit11InstitutionV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- },
- {
- "kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit11InstitutionV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit11InstitutionV2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInstitution",
- "printedName": "LinkKit.PLKInstitution",
- "usr": "c:objc(cs)PLKInstitution"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvp",
- "mangledName": "$s7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvp",
+ "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -23245,81 +21845,101 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKInstitution",
- "printedName": "LinkKit.PLKInstitution",
- "usr": "c:objc(cs)PLKInstitution"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvg",
- "mangledName": "$s7LinkKit11InstitutionV6toObjCSo14PLKInstitutionCvg",
+ "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvg",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "implicit": true,
"accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit11InstitutionV",
- "mangledName": "$s7LinkKit11InstitutionV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
},
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ExitMetadata",
- "printedName": "ExitMetadata",
- "children": [
{
"kind": "Var",
- "name": "status",
- "printedName": "status",
+ "name": "matchReason",
+ "printedName": "matchReason",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvp",
+ "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23337,21 +21957,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvg",
+ "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23369,21 +21989,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvs",
+ "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23400,8 +22020,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV6statusAA0C6StatusOSgvM",
+ "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23410,27 +22030,113 @@
},
{
"kind": "Var",
- "name": "institution",
- "printedName": "institution",
+ "name": "linkSessionID",
+ "printedName": "linkSessionID",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvp",
+ "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvg",
+ "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvs",
+ "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvM",
+ "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mfaType",
+ "printedName": "mfaType",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.Institution?",
+ "printedName": "LinkKit.MFAType?",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvp",
+ "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23448,21 +22154,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.Institution?",
+ "printedName": "LinkKit.MFAType?",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvg",
+ "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23480,21 +22186,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.Institution?",
+ "printedName": "LinkKit.MFAType?",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvs",
+ "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23511,8 +22217,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV11institutionAA11InstitutionVSgvM",
+ "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23521,8 +22227,8 @@
},
{
"kind": "Var",
- "name": "linkSessionID",
- "printedName": "linkSessionID",
+ "name": "requestID",
+ "printedName": "requestID",
"children": [
{
"kind": "TypeNominal",
@@ -23540,8 +22246,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23572,8 +22278,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23604,8 +22310,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23622,8 +22328,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV13linkSessionIDSSSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV13linkSessionIDSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23632,8 +22338,8 @@
},
{
"kind": "Var",
- "name": "requestID",
- "printedName": "requestID",
+ "name": "routingNumber",
+ "printedName": "routingNumber",
"children": [
{
"kind": "TypeNominal",
@@ -23651,8 +22357,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23683,8 +22389,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23715,8 +22421,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23733,8 +22439,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV9requestIDSSSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV9requestIDSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23743,8 +22449,8 @@
},
{
"kind": "Var",
- "name": "metadataJSON",
- "printedName": "metadataJSON",
+ "name": "selection",
+ "printedName": "selection",
"children": [
{
"kind": "TypeNominal",
@@ -23762,8 +22468,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvp",
- "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvp",
+ "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -23794,8 +22500,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvg",
- "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvg",
+ "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "get"
@@ -23826,8 +22532,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvs",
- "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvs",
+ "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvs",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "set"
@@ -23844,8 +22550,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV12metadataJSONSSSgvM",
- "mangledName": "$s7LinkKit12ExitMetadataV12metadataJSONSSSgvM",
+ "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvM",
"moduleName": "LinkKit",
"implicit": true,
"accessorKind": "_modify"
@@ -23853,41 +22559,349 @@
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(status:institution:linkSessionID:requestID:metadataJSON:)",
+ "kind": "Var",
+ "name": "timestamp",
+ "printedName": "timestamp",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
- },
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvp",
+ "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvg",
+ "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
},
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.Institution?",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "Institution",
- "printedName": "LinkKit.Institution",
- "usr": "s:7LinkKit11InstitutionV"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvs",
+ "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvM",
+ "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "viewName",
+ "printedName": "viewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ViewName?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ViewName?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ViewName?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "metadataJSON",
+ "printedName": "metadataJSON",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvp",
+ "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvg",
+ "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvs",
+ "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvM",
+ "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(accountNumberMask:errorCode:errorMessage:exitStatus:institutionID:institutionName:institutionSearchQuery:isUpdateMode:matchReason:linkSessionID:mfaType:requestID:routingNumber:selection:timestamp:viewName:metadataJSON:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
],
"hasDefaultArg": true,
@@ -23908,6 +22922,21 @@
"hasDefaultArg": true,
"usr": "s:Sq"
},
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ExitStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitStatus",
+ "printedName": "LinkKit.ExitStatus",
+ "usr": "s:7LinkKit10ExitStatusO"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
"name": "Optional",
@@ -23937,30 +22966,158 @@
],
"hasDefaultArg": true,
"usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit12ExitMetadataV6status11institution13linkSessionID07requestI012metadataJSONAcA0C6StatusOSg_AA11InstitutionVSgSSSgA2Otcfc",
- "mangledName": "$s7LinkKit12ExitMetadataV6status11institution13linkSessionID07requestI012metadataJSONAcA0C6StatusOSg_AA11InstitutionVSgSSSgA2Otcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
+ },
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.MFAType?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.ViewName?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit12ExitMetadataVACycfc",
- "mangledName": "$s7LinkKit12ExitMetadataVACycfc",
+ "usr": "s:7LinkKit13EventMetadataV17accountNumberMask9errorCode0H7Message10exitStatus13institutionID0M4Name0M11SearchQuery12isUpdateMode11matchReason011linkSessionN07mfaType07requestN007routingF09selection9timestamp04viewO012metadataJSONACSSSg_AA09ExitErrorI0OSgAuA04ExitL0OSgA5USSAA7MFATypeOSgA3U10Foundation4DateVAA04ViewO0OSgAUtcfc",
+ "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMask9errorCode0H7Message10exitStatus13institutionID0M4Name0M11SearchQuery12isUpdateMode11matchReason011linkSessionN07mfaType07requestN007routingF09selection9timestamp04viewO012metadataJSONACSSSg_AA09ExitErrorI0OSgAuA04ExitL0OSgA5USSAA7MFATypeOSgA3U10Foundation4DateVAA04ViewO0OSgAUtcfc",
"moduleName": "LinkKit",
"implicit": true,
"init_kind": "Designated"
@@ -23972,9 +23129,9 @@
"children": [
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
},
{
"kind": "TypeNominal",
@@ -23984,8 +23141,8 @@
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit12ExitMetadataV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit12ExitMetadataV4fromACs7Decoder_p_tKcfc",
+ "usr": "s:7LinkKit13EventMetadataV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit13EventMetadataV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
"implicit": true,
"throwing": true,
@@ -24009,8 +23166,8 @@
}
],
"declKind": "Func",
- "usr": "s:7LinkKit12ExitMetadataV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit12ExitMetadataV6encode2toys7Encoder_p_tKF",
+ "usr": "s:7LinkKit13EventMetadataV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit13EventMetadataV6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"implicit": true,
"throwing": true,
@@ -24029,20 +23186,20 @@
},
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
},
{
"kind": "TypeNominal",
- "name": "ExitMetadata",
- "printedName": "LinkKit.ExitMetadata",
- "usr": "s:7LinkKit12ExitMetadataV"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit12ExitMetadataV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit12ExitMetadataV2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit13EventMetadataV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit13EventMetadataV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
"isFromExtension": true,
@@ -24055,14 +23212,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKExitMetadata",
- "printedName": "LinkKit.PLKExitMetadata",
- "usr": "c:objc(cs)PLKExitMetadata"
+ "name": "PLKEventMetadata",
+ "printedName": "LinkKit.PLKEventMetadata",
+ "usr": "c:objc(cs)PLKEventMetadata"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvp",
- "mangledName": "$s7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvp",
+ "usr": "s:7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvp",
+ "mangledName": "$s7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvp",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessors": [
@@ -24073,14 +23230,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKExitMetadata",
- "printedName": "LinkKit.PLKExitMetadata",
- "usr": "c:objc(cs)PLKExitMetadata"
+ "name": "PLKEventMetadata",
+ "printedName": "LinkKit.PLKEventMetadata",
+ "usr": "c:objc(cs)PLKEventMetadata"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvg",
- "mangledName": "$s7LinkKit12ExitMetadataV6toObjCSo07PLKExitD0Cvg",
+ "usr": "s:7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvg",
+ "mangledName": "$s7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
@@ -24089,8 +23246,8 @@
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit12ExitMetadataV",
- "mangledName": "$s7LinkKit12ExitMetadataV",
+ "usr": "s:7LinkKit13EventMetadataV",
+ "mangledName": "$s7LinkKit13EventMetadataV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
@@ -24120,237 +23277,335 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "Anomalies",
+ "printedName": "Anomalies",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "EventName",
- "printedName": "EventName",
+ "name": "Plaid",
+ "printedName": "Plaid",
"children": [
{
- "kind": "Var",
- "name": "bankIncomeInsightsCompleted",
- "printedName": "bankIncomeInsightsCompleted",
+ "kind": "TypeDecl",
+ "name": "CreateError",
+ "printedName": "CreateError",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "configurationError",
+ "printedName": "configurationError",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.Plaid.CreateError.Type) -> (LinkKit.ConfigurationError) -> LinkKit.Plaid.CreateError",
"children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ConfigurationError) -> LinkKit.Plaid.CreateError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CreateError",
+ "printedName": "LinkKit.Plaid.CreateError",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ConfigurationError",
+ "printedName": "LinkKit.ConfigurationError",
+ "usr": "s:7LinkKit18ConfigurationErrorO"
+ }
+ ]
+ },
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Metatype",
+ "printedName": "LinkKit.Plaid.CreateError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CreateError",
+ "printedName": "LinkKit.Plaid.CreateError",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO"
+ }
+ ]
}
]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO013configurationE0yAeA013ConfigurationE0OcAEmF",
+ "mangledName": "$s7LinkKit5PlaidV11CreateErrorO013configurationE0yAeA013ConfigurationE0OcAEmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO27bankIncomeInsightsCompletedyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO27bankIncomeInsightsCompletedyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "closeOAuth",
- "printedName": "closeOAuth",
- "children": [
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvp",
+ "mangledName": "$s7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvg",
+ "mangledName": "$s7LinkKit5PlaidV11CreateErrorO6toObjCSo7NSErrorCvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO10closeOAuthyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO10closeOAuthyA2CmF",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO",
+ "mangledName": "$s7LinkKit5PlaidV11CreateErrorO",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
]
},
{
- "kind": "Var",
- "name": "error",
- "printedName": "error",
+ "kind": "Function",
+ "name": "create",
+ "printedName": "create(_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Result",
+ "printedName": "Swift.Result",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "CreateError",
+ "printedName": "LinkKit.Plaid.CreateError",
+ "usr": "s:7LinkKit5PlaidV11CreateErrorO"
}
- ]
+ ],
+ "usr": "s:s6ResultO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO5erroryA2CmF",
- "mangledName": "$s7LinkKit9EventNameO5erroryA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A18TokenConfigurationVFZ",
+ "mangledName": "$s7LinkKit5PlaidV6createys6ResultOyAA7Handler_pAC11CreateErrorOGAA0A18TokenConfigurationVFZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "exit",
- "printedName": "exit",
+ "name": "version",
+ "printedName": "version",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO4exityA2CmF",
- "mangledName": "$s7LinkKit9EventNameO4exityA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit5PlaidV7versionSSvpZ",
+ "mangledName": "$s7LinkKit5PlaidV7versionSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "failOAuth",
- "printedName": "failOAuth",
- "children": [
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit5PlaidV7versionSSvgZ",
+ "mangledName": "$s7LinkKit5PlaidV7versionSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO9failOAuthyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO9failOAuthyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Plaid",
+ "printedName": "LinkKit.Plaid",
+ "usr": "s:7LinkKit5PlaidV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit5PlaidVACycfc",
+ "mangledName": "$s7LinkKit5PlaidVACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit5PlaidV",
+ "mangledName": "$s7LinkKit5PlaidV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "AuthErrorCode",
+ "printedName": "AuthErrorCode",
+ "children": [
{
"kind": "Var",
- "name": "handoff",
- "printedName": "handoff",
+ "name": "productNotReady",
+ "printedName": "productNotReady",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.AuthErrorCode.Type) -> LinkKit.AuthErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.AuthErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
}
]
}
@@ -24358,8 +23613,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO7handoffyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO7handoffyA2CmF",
+ "usr": "s:7LinkKit13AuthErrorCodeO15productNotReadyyA2CmF",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO15productNotReadyyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -24367,30 +23622,30 @@
},
{
"kind": "Var",
- "name": "identityVerificationStartStep",
- "printedName": "identityVerificationStartStep",
+ "name": "verificationExpired",
+ "printedName": "verificationExpired",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.AuthErrorCode.Type) -> LinkKit.AuthErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.AuthErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
}
]
}
@@ -24398,8 +23653,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO29identityVerificationStartStepyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO29identityVerificationStartStepyA2CmF",
+ "usr": "s:7LinkKit13AuthErrorCodeO19verificationExpiredyA2CmF",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO19verificationExpiredyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -24407,30 +23662,43 @@
},
{
"kind": "Var",
- "name": "identityVerificationPassStep",
- "printedName": "identityVerificationPassStep",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.AuthErrorCode.Type) -> (Swift.String) -> LinkKit.AuthErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.AuthErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.AuthErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
}
]
}
@@ -24438,1159 +23706,1464 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO28identityVerificationPassStepyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO28identityVerificationPassStepyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "usr": "s:7LinkKit13AuthErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
- "kind": "Var",
- "name": "identityVerificationFailStep",
- "printedName": "identityVerificationFailStep",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "AuthErrorCode",
+ "printedName": "LinkKit.AuthErrorCode",
+ "usr": "s:7LinkKit13AuthErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO28identityVerificationFailStepyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO28identityVerificationFailStepyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13AuthErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO6stringACSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "identityVerificationPendingReviewStep",
- "printedName": "identityVerificationPendingReviewStep",
+ "name": "description",
+ "printedName": "description",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO37identityVerificationPendingReviewStepyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO37identityVerificationPendingReviewStepyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13AuthErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identityVerificationCreateSession",
- "printedName": "identityVerificationCreateSession",
- "children": [
+ "AccessControl"
+ ],
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13AuthErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO33identityVerificationCreateSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO33identityVerificationCreateSessionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "identityVerificationResumeSession",
- "printedName": "identityVerificationResumeSession",
+ "name": "productNotReadyString",
+ "printedName": "productNotReadyString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO33identityVerificationResumeSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO33identityVerificationResumeSessionyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13AuthErrorCodeO21productNotReadyStringSSvpZ",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO21productNotReadyStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identityVerificationPassSession",
- "printedName": "identityVerificationPassSession",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13AuthErrorCodeO21productNotReadyStringSSvgZ",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO21productNotReadyStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO31identityVerificationPassSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO31identityVerificationPassSessionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "identityVerificationFailSession",
- "printedName": "identityVerificationFailSession",
+ "name": "verificationExpiredString",
+ "printedName": "verificationExpiredString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO31identityVerificationFailSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO31identityVerificationFailSessionyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvpZ",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identityVerificationPendingReviewSession",
- "printedName": "identityVerificationPendingReviewSession",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvgZ",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO40identityVerificationPendingReviewSessionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO40identityVerificationPendingReviewSessionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "identityVerificationOpenUI",
- "printedName": "identityVerificationOpenUI",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKAuthErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "PLKAuthErrorCode",
+ "printedName": "LinkKit.PLKAuthErrorCode",
+ "usr": "c:@E@PLKAuthErrorCode"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO26identityVerificationOpenUIyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO26identityVerificationOpenUIyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvp",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "identityVerificationResumeUI",
- "printedName": "identityVerificationResumeUI",
- "children": [
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKAuthErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "PLKAuthErrorCode",
+ "printedName": "LinkKit.PLKAuthErrorCode",
+ "usr": "c:@E@PLKAuthErrorCode"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvg",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO28identityVerificationResumeUIyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO28identityVerificationResumeUIyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit13AuthErrorCodeO",
+ "mangledName": "$s7LinkKit13AuthErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "GithubRelease",
+ "printedName": "GithubRelease",
+ "children": [
{
"kind": "Var",
- "name": "identityVerificationCloseUI",
- "printedName": "identityVerificationCloseUI",
+ "name": "htmlURL",
+ "printedName": "htmlURL",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO27identityVerificationCloseUIyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO27identityVerificationCloseUIyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV7htmlURLSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV7htmlURLSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "matchedSelectInstitution",
- "printedName": "matchedSelectInstitution",
- "children": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV7htmlURLSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV7htmlURLSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO24matchedSelectInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO24matchedSelectInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "matchedSelectVerifyMethod",
- "printedName": "matchedSelectVerifyMethod",
+ "name": "tagName",
+ "printedName": "tagName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV7tagNameSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV7tagNameSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV7tagNameSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV7tagNameSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO25matchedSelectVerifyMethodyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO25matchedSelectVerifyMethodyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "open",
- "printedName": "open",
+ "name": "name",
+ "printedName": "name",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV4nameSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV4nameSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 2,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV4nameSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV4nameSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO4openyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO4openyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "openMyPlaid",
- "printedName": "openMyPlaid",
+ "name": "draft",
+ "printedName": "draft",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV5draftSbvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV5draftSbvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 3,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV5draftSbvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV5draftSbvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO11openMyPlaidyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO11openMyPlaidyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "openOAuth",
- "printedName": "openOAuth",
+ "name": "prerelease",
+ "printedName": "prerelease",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV10prereleaseSbvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV10prereleaseSbvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 4,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV10prereleaseSbvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV10prereleaseSbvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO9openOAuthyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO9openOAuthyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "searchInstitution",
- "printedName": "searchInstitution",
+ "name": "publishedAt",
+ "printedName": "publishedAt",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 5,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO17searchInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO17searchInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "selectDegradedInstitution",
- "printedName": "selectDegradedInstitution",
+ "name": "body",
+ "printedName": "body",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV4bodySSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV4bodySSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 6,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV4bodySSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV4bodySSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO25selectDegradedInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO25selectDegradedInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "selectFilteredInstitution",
- "printedName": "selectFilteredInstitution",
+ "name": "semanticVersion",
+ "printedName": "semanticVersion",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.SemanticVersion?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvp",
+ "moduleName": "LinkKit",
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "name": "Optional",
+ "printedName": "LinkKit.SemanticVersion?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "SemanticVersion",
+ "printedName": "LinkKit.SemanticVersion",
+ "usr": "s:7LinkKit15SemanticVersionV"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO25selectFilteredInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO25selectFilteredInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "selectDownInstitution",
- "printedName": "selectDownInstitution",
+ "kind": "TypeDecl",
+ "name": "CodingKeys",
+ "printedName": "CodingKeys",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "htmlURL",
+ "printedName": "htmlURL",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO21selectDownInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO21selectDownInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectInstitution",
- "printedName": "selectInstitution",
- "children": [
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO7htmlURLyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO7htmlURLyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "tagName",
+ "printedName": "tagName",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO17selectInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO17selectInstitutionyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectBrand",
- "printedName": "selectBrand",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO7tagNameyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO7tagNameyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "name",
+ "printedName": "name",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO11selectBrandyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO11selectBrandyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectAuthType",
- "printedName": "selectAuthType",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO4nameyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO4nameyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 2
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "draft",
+ "printedName": "draft",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO14selectAuthTypeyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO14selectAuthTypeyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitAccountNumber",
- "printedName": "submitAccountNumber",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO5draftyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO5draftyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 3
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "prerelease",
+ "printedName": "prerelease",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO19submitAccountNumberyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO19submitAccountNumberyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitDocuments",
- "printedName": "submitDocuments",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO10prereleaseyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO10prereleaseyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 4
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "publishedAt",
+ "printedName": "publishedAt",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO15submitDocumentsyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO15submitDocumentsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitDocumentsSuccess",
- "printedName": "submitDocumentsSuccess",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11publishedAtyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11publishedAtyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 5
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "body",
+ "printedName": "body",
"children": [
{
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO22submitDocumentsSuccessyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO22submitDocumentsSuccessyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitDocumentsError",
- "printedName": "submitDocumentsError",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO4bodyyA2EmF",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO4bodyyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 6
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "name": "Optional",
+ "printedName": "LinkKit.GithubRelease.CodingKeys?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO20submitDocumentsErroryA2CmF",
- "mangledName": "$s7LinkKit9EventNameO20submitDocumentsErroryA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitRoutingNumber",
- "printedName": "submitRoutingNumber",
- "children": [
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueAESgSS_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "rawValue",
+ "printedName": "rawValue",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO19submitRoutingNumberyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO19submitRoutingNumberyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitCredentials",
- "printedName": "submitCredentials",
- "children": [
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Var",
+ "name": "stringValue",
+ "printedName": "stringValue",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(stringValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.GithubRelease.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueAESgSS_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "intValue",
+ "printedName": "intValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
- ]
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvp",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvg",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(intValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.GithubRelease.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.GithubRelease.CodingKeys",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueAESgSi_tcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueAESgSi_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO17submitCredentialsyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO17submitCredentialsyA2CmF",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO",
+ "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
+ "enumRawTypeName": "String",
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CodingKey",
+ "printedName": "CodingKey",
+ "usr": "s:s9CodingKeyP",
+ "mangledName": "$ss9CodingKeyP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(htmlURL:tagName:name:draft:prerelease:publishedAt:body:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GithubRelease",
+ "printedName": "LinkKit.GithubRelease",
+ "usr": "s:7LinkKit13GithubReleaseV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV7htmlURL7tagName4name5draft10prerelease11publishedAt4bodyACSS_S2SS2b10Foundation4DateVSStcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV7htmlURL7tagName4name5draft10prerelease11publishedAt4bodyACSS_S2SS2b10Foundation4DateVSStcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GithubRelease",
+ "printedName": "LinkKit.GithubRelease",
+ "usr": "s:7LinkKit13GithubReleaseV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit13GithubReleaseV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit13GithubReleaseV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit13GithubReleaseV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit13GithubReleaseV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit13GithubReleaseV",
+ "mangledName": "$s7LinkKit13GithubReleaseV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Environment",
+ "printedName": "Environment",
+ "children": [
{
"kind": "Var",
- "name": "submitMFA",
- "printedName": "submitMFA",
+ "name": "production",
+ "printedName": "production",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.Environment.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
]
}
@@ -25598,8 +25171,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO9submitMFAyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO9submitMFAyA2CmF",
+ "usr": "s:7LinkKit11EnvironmentO10productionyA2CmF",
+ "mangledName": "$s7LinkKit11EnvironmentO10productionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -25607,30 +25180,30 @@
},
{
"kind": "Var",
- "name": "transitionView",
- "printedName": "transitionView",
+ "name": "development",
+ "printedName": "development",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.Environment.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
]
}
@@ -25638,8 +25211,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO14transitionViewyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO14transitionViewyA2CmF",
+ "usr": "s:7LinkKit11EnvironmentO11developmentyA2CmF",
+ "mangledName": "$s7LinkKit11EnvironmentO11developmentyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -25647,30 +25220,30 @@
},
{
"kind": "Var",
- "name": "viewDataTypes",
- "printedName": "viewDataTypes",
+ "name": "sandbox",
+ "printedName": "sandbox",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "printedName": "(LinkKit.Environment.Type) -> LinkKit.Environment",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
+ "printedName": "LinkKit.Environment.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
]
}
@@ -25678,8 +25251,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO13viewDataTypesyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO13viewDataTypesyA2CmF",
+ "usr": "s:7LinkKit11EnvironmentO7sandboxyA2CmF",
+ "mangledName": "$s7LinkKit11EnvironmentO7sandboxyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -25687,291 +25260,133 @@
},
{
"kind": "Var",
- "name": "submitPhone",
- "printedName": "submitPhone",
+ "name": "baseURL",
+ "printedName": "baseURL",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO11submitPhoneyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO11submitPhoneyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvp",
+ "mangledName": "$s7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "skipSubmitPhone",
- "printedName": "skipSubmitPhone",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
- }
+ "AccessControl"
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO15skipSubmitPhoneyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO15skipSubmitPhoneyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "verifyPhone",
- "printedName": "verifyPhone",
- "children": [
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvg",
+ "mangledName": "$s7LinkKit11EnvironmentO7baseURL10Foundation0E0Vvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO11verifyPhoneyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO11verifyPhoneyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "connectNewInstitution",
- "printedName": "connectNewInstitution",
+ "name": "description",
+ "printedName": "description",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO21connectNewInstitutionyA2CmF",
- "mangledName": "$s7LinkKit9EventNameO21connectNewInstitutionyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit11EnvironmentO11descriptionSSvp",
+ "mangledName": "$s7LinkKit11EnvironmentO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
+ "AccessControl"
+ ],
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.EventName.Type) -> (Swift.String) -> LinkKit.EventName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.EventName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.EventName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit11EnvironmentO11descriptionSSvg",
+ "mangledName": "$s7LinkKit11EnvironmentO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9EventNameO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit9EventNameO7unknownyACSScACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
"kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9EventNameO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit9EventNameO4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9EventNameO8rawValueACSS_tcfc",
- "mangledName": "$s7LinkKit9EventNameO8rawValueACSS_tcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit11EnvironmentO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit11EnvironmentO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "static": true,
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9EventNameO11descriptionSSvp",
- "mangledName": "$s7LinkKit9EventNameO11descriptionSSvp",
+ "usr": "s:7LinkKit11EnvironmentO9hashValueSivp",
+ "mangledName": "$s7LinkKit11EnvironmentO9hashValueSivp",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -25980,23 +25395,24 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9EventNameO11descriptionSSvg",
- "mangledName": "$s7LinkKit9EventNameO11descriptionSSvg",
+ "usr": "s:7LinkKit11EnvironmentO9hashValueSivg",
+ "mangledName": "$s7LinkKit11EnvironmentO9hashValueSivg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
},
{
"kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "name": "hash",
+ "printedName": "hash(into:)",
"children": [
{
"kind": "TypeNominal",
@@ -26005,69 +25421,38 @@
},
{
"kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9EventNameO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit9EventNameO6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "EventName",
- "printedName": "LinkKit.EventName",
- "usr": "s:7LinkKit9EventNameO"
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit9EventNameO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit9EventNameO2eeoiySbAC_ACtFZ",
+ "usr": "s:7LinkKit11EnvironmentO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit11EnvironmentO4hash4intoys6HasherVz_tF",
"moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
+ "implicit": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "valueForQueryString",
+ "printedName": "valueForQueryString",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKEventName",
- "printedName": "LinkKit.PLKEventName",
- "usr": "c:objc(cs)PLKEventName"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvp",
- "mangledName": "$s7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvp",
+ "usr": "s:7LinkKit11EnvironmentO19valueForQueryStringSSvp",
+ "mangledName": "$s7LinkKit11EnvironmentO19valueForQueryStringSSvp",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
"isFromExtension": true,
"accessors": [
{
@@ -26077,24 +25462,52 @@
"children": [
{
"kind": "TypeNominal",
- "name": "PLKEventName",
- "printedName": "LinkKit.PLKEventName",
- "usr": "c:objc(cs)PLKEventName"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvg",
- "mangledName": "$s7LinkKit9EventNameO6toObjCSo08PLKEventD0Cvg",
+ "usr": "s:7LinkKit11EnvironmentO19valueForQueryStringSSvg",
+ "mangledName": "$s7LinkKit11EnvironmentO19valueForQueryStringSSvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
}
]
+ },
+ {
+ "kind": "Function",
+ "name": "fuzzyMatches",
+ "printedName": "fuzzyMatches(linkToken:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit11EnvironmentO12fuzzyMatches9linkTokenSbSS_tF",
+ "mangledName": "$s7LinkKit11EnvironmentO12fuzzyMatches9linkTokenSbSS_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit9EventNameO",
- "mangledName": "$s7LinkKit9EventNameO",
+ "usr": "s:7LinkKit11EnvironmentO",
+ "mangledName": "$s7LinkKit11EnvironmentO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl",
@@ -26103,545 +25516,829 @@
"conformances": [
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
"kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
},
{
"kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "ViewName",
- "printedName": "ViewName",
+ "name": "ExitError",
+ "printedName": "ExitError",
"children": [
{
"kind": "Var",
- "name": "acceptTOS",
- "printedName": "acceptTOS",
+ "name": "errorCode",
+ "printedName": "errorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9acceptTOSyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9acceptTOSyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovp",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "connected",
- "printedName": "connected",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9connectedyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9connectedyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "consent",
- "printedName": "consent",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovg",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovs",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0Ovs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorCodeAA0cdF0OvM",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCodeAA0cdF0OvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO7consentyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO7consentyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "credential",
- "printedName": "credential",
+ "name": "errorMessage",
+ "printedName": "errorMessage",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO10credentialyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO10credentialyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvp",
+ "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "dataTransparency",
- "printedName": "dataTransparency",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvg",
+ "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvs",
+ "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV12errorMessageSSvM",
+ "mangledName": "$s7LinkKit9ExitErrorV12errorMessageSSvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO16dataTransparencyyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO16dataTransparencyyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "dataTransparencyConsent",
- "printedName": "dataTransparencyConsent",
+ "name": "displayMessage",
+ "printedName": "displayMessage",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO23dataTransparencyConsentyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO23dataTransparencyConsentyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvp",
+ "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "documentaryVerification",
- "printedName": "documentaryVerification",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO23documentaryVerificationyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO23documentaryVerificationyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "error",
- "printedName": "error",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvg",
+ "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvs",
+ "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV14displayMessageSSSgvM",
+ "mangledName": "$s7LinkKit9ExitErrorV14displayMessageSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO5erroryA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO5erroryA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "exit",
- "printedName": "exit",
+ "name": "errorJSON",
+ "printedName": "errorJSON",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO4exityA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO4exityA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvp",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "kycCheck",
- "printedName": "kycCheck",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO8kycCheckyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO8kycCheckyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "loading",
- "printedName": "loading",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvg",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvs",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV9errorJSONSSSgvM",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorJSONSSSgvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO7loadingyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO7loadingyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "matchedConsent",
- "printedName": "matchedConsent",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(errorCode:errorMessage:displayMessage:errorJSON:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorCode",
+ "printedName": "LinkKit.ExitErrorCode",
+ "usr": "s:7LinkKit13ExitErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO14matchedConsentyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO14matchedConsentyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9ExitErrorV9errorCode0E7Message07displayG00E4JSONAcA0cdF0O_S2SSgAJtcfc",
+ "mangledName": "$s7LinkKit9ExitErrorV9errorCode0E7Message07displayG00E4JSONAcA0cdF0O_S2SSgAJtcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9ExitErrorV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit9ExitErrorV4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ExitErrorV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit9ExitErrorV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ExitError",
+ "printedName": "LinkKit.ExitError",
+ "usr": "s:7LinkKit9ExitErrorV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ExitErrorV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit9ExitErrorV2eeoiySbAC_ACtFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ExitErrorV6toObjCSo7NSErrorCvp",
+ "mangledName": "$s7LinkKit9ExitErrorV6toObjCSo7NSErrorCvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ExitErrorV6toObjCSo7NSErrorCvg",
+ "mangledName": "$s7LinkKit9ExitErrorV6toObjCSo7NSErrorCvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit9ExitErrorV",
+ "mangledName": "$s7LinkKit9ExitErrorV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkHTTPServiceUserAgentProvider",
+ "printedName": "LinkHTTPServiceUserAgentProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "userAgent",
+ "printedName": "userAgent",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvp",
+ "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvg",
+ "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent",
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LinkHTTPServiceUserAgentProvider",
+ "printedName": "LinkKit.LinkHTTPServiceUserAgentProvider",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderCACycfc",
+ "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderCACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC",
+ "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "HTTPServiceUserAgentProviding",
+ "printedName": "HTTPServiceUserAgentProviding",
+ "usr": "s:7AppCore29HTTPServiceUserAgentProvidingP",
+ "mangledName": "$s7AppCore29HTTPServiceUserAgentProvidingP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "MFAType",
+ "printedName": "MFAType",
+ "children": [
{
"kind": "Var",
- "name": "matchedCredential",
- "printedName": "matchedCredential",
+ "name": "code",
+ "printedName": "code",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "printedName": "LinkKit.MFAType.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
]
}
@@ -26649,8 +26346,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO17matchedCredentialyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO17matchedCredentialyA2CmF",
+ "usr": "s:7LinkKit7MFATypeO4codeyA2CmF",
+ "mangledName": "$s7LinkKit7MFATypeO4codeyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -26658,30 +26355,30 @@
},
{
"kind": "Var",
- "name": "matchedMFA",
- "printedName": "matchedMFA",
+ "name": "device",
+ "printedName": "device",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "printedName": "LinkKit.MFAType.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
]
}
@@ -26689,8 +26386,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO10matchedMFAyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO10matchedMFAyA2CmF",
+ "usr": "s:7LinkKit7MFATypeO6deviceyA2CmF",
+ "mangledName": "$s7LinkKit7MFATypeO6deviceyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -26698,30 +26395,30 @@
},
{
"kind": "Var",
- "name": "mfa",
- "printedName": "mfa",
+ "name": "questions",
+ "printedName": "questions",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "printedName": "LinkKit.MFAType.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
]
}
@@ -26729,8 +26426,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO3mfayA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO3mfayA2CmF",
+ "usr": "s:7LinkKit7MFATypeO9questionsyA2CmF",
+ "mangledName": "$s7LinkKit7MFATypeO9questionsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -26738,30 +26435,30 @@
},
{
"kind": "Var",
- "name": "numbers",
- "printedName": "numbers",
+ "name": "selections",
+ "printedName": "selections",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
+ "printedName": "LinkKit.MFAType.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
]
}
@@ -26769,1069 +26466,872 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO7numbersyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO7numbersyA2CmF",
+ "usr": "s:7LinkKit7MFATypeO10selectionsyA2CmF",
+ "mangledName": "$s7LinkKit7MFATypeO10selectionsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
]
},
{
- "kind": "Var",
- "name": "numbersSelectInstitution",
- "printedName": "numbersSelectInstitution",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO24numbersSelectInstitutionyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO24numbersSelectInstitutionyA2CmF",
- "moduleName": "LinkKit"
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit7MFATypeO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit7MFATypeO4fromACs7Decoder_p_tKcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "oauth",
- "printedName": "oauth",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.MFAType?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO5oauthyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO5oauthyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit7MFATypeO8rawValueACSgSS_tcfc",
+ "mangledName": "$s7LinkKit7MFATypeO8rawValueACSgSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "recaptcha",
- "printedName": "recaptcha",
+ "name": "description",
+ "printedName": "description",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9recaptchayA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9recaptchayA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit7MFATypeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "riskCheck",
- "printedName": "riskCheck",
- "children": [
+ "AccessControl"
+ ],
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit7MFATypeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9riskCheckyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9riskCheckyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "screening",
- "printedName": "screening",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9screeningyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9screeningyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7MFATypeO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit7MFATypeO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "selectAccount",
- "printedName": "selectAccount",
+ "name": "codeString",
+ "printedName": "codeString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO13selectAccountyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO13selectAccountyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO10codeStringSSvpZ",
+ "mangledName": "$s7LinkKit7MFATypeO10codeStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "selectAuthType",
- "printedName": "selectAuthType",
- "children": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO10codeStringSSvgZ",
+ "mangledName": "$s7LinkKit7MFATypeO10codeStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO14selectAuthTypeyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO14selectAuthTypeyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "submitPhone",
- "printedName": "submitPhone",
+ "name": "deviceString",
+ "printedName": "deviceString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO11submitPhoneyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO11submitPhoneyA2CmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Var",
- "name": "verifyPhone",
- "printedName": "verifyPhone",
- "children": [
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO12deviceStringSSvpZ",
+ "mangledName": "$s7LinkKit7MFATypeO12deviceStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO12deviceStringSSvgZ",
+ "mangledName": "$s7LinkKit7MFATypeO12deviceStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO11verifyPhoneyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO11verifyPhoneyA2CmF",
- "moduleName": "LinkKit"
+ ]
},
{
"kind": "Var",
- "name": "selectSavedInstitution",
- "printedName": "selectSavedInstitution",
+ "name": "questionsString",
+ "printedName": "questionsString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO15questionsStringSSvpZ",
+ "mangledName": "$s7LinkKit7MFATypeO15questionsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO15questionsStringSSvgZ",
+ "mangledName": "$s7LinkKit7MFATypeO15questionsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO22selectSavedInstitutionyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO22selectSavedInstitutionyA2CmF",
- "moduleName": "LinkKit"
+ ]
},
{
"kind": "Var",
- "name": "selectSavedAccount",
- "printedName": "selectSavedAccount",
+ "name": "selectionsString",
+ "printedName": "selectionsString",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO18selectSavedAccountyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO18selectSavedAccountyA2CmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Var",
- "name": "selectBrand",
- "printedName": "selectBrand",
- "children": [
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO16selectionsStringSSvpZ",
+ "mangledName": "$s7LinkKit7MFATypeO16selectionsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO16selectionsStringSSvgZ",
+ "mangledName": "$s7LinkKit7MFATypeO16selectionsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO11selectBrandyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO11selectBrandyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "selectInstitution",
- "printedName": "selectInstitution",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "MFAType",
+ "printedName": "LinkKit.MFAType",
+ "usr": "s:7LinkKit7MFATypeO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO17selectInstitutionyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO17selectInstitutionyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7MFATypeO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit7MFATypeO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "static": true,
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "selfieCheck",
- "printedName": "selfieCheck",
+ "name": "hashValue",
+ "printedName": "hashValue",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO11selfieCheckyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO11selfieCheckyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO9hashValueSivp",
+ "mangledName": "$s7LinkKit7MFATypeO9hashValueSivp",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "uploadDocuments",
- "printedName": "uploadDocuments",
- "children": [
+ "implicit": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO9hashValueSivg",
+ "mangledName": "$s7LinkKit7MFATypeO9hashValueSivg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO15uploadDocumentsyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO15uploadDocumentsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "submitDocuments",
- "printedName": "submitDocuments",
+ "kind": "Function",
+ "name": "hash",
+ "printedName": "hash(into:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO15submitDocumentsyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO15submitDocumentsyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7MFATypeO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit7MFATypeO4hash4intoys6HasherVz_tF",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "submitDocumentsSuccess",
- "printedName": "submitDocumentsSuccess",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "PLKMFAType",
+ "printedName": "LinkKit.PLKMFAType",
+ "usr": "c:@E@PLKMFAType"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO22submitDocumentsSuccessyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO22submitDocumentsSuccessyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvp",
+ "mangledName": "$s7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "submitDocumentsError",
- "printedName": "submitDocumentsError",
- "children": [
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
+ "name": "PLKMFAType",
+ "printedName": "LinkKit.PLKMFAType",
+ "usr": "c:@E@PLKMFAType"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvg",
+ "mangledName": "$s7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO20submitDocumentsErroryA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO20submitDocumentsErroryA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit7MFATypeO",
+ "mangledName": "$s7LinkKit7MFATypeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
},
{
- "kind": "Var",
- "name": "verifySMS",
- "printedName": "verifySMS",
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "EmbeddedSearchAndSelectView",
+ "printedName": "EmbeddedSearchAndSelectView",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(viewModel:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "EmbeddedSearchAndSelectView",
+ "printedName": "LinkKit.EmbeddedSearchAndSelectView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "EmbeddedSearchViewModel",
+ "printedName": "Workflow.EmbeddedSearchViewModel",
+ "usr": "s:8Workflow23EmbeddedSearchViewModelC"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO9verifySMSyA2CmF",
- "mangledName": "$s7LinkKit8ViewNameO9verifySMSyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit27EmbeddedSearchAndSelectViewC9viewModelAC8Workflow0cdgI0C_tcfc",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC9viewModelAC8Workflow0cdgI0C_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
+ "Custom",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "kind": "Function",
+ "name": "collectionView",
+ "printedName": "collectionView(_:didSelectItemAt:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ViewName.Type) -> (Swift.String) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ViewName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ViewName.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit8ViewNameO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit8ViewNameO7unknownyACSScACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
},
{
"kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit8ViewNameO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit8ViewNameO4fromACs7Decoder_p_tKcfc",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didSelectItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_03didF6ItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:didSelectItemAtIndexPath:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "throwing": true,
- "init_kind": "Designated"
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
+ "kind": "Function",
+ "name": "collectionView",
+ "printedName": "collectionView(_:didHighlightItemAt:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit8ViewNameO8rawValueACSS_tcfc",
- "mangledName": "$s7LinkKit8ViewNameO8rawValueACSS_tcfc",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didHighlightItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_18didHighlightItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:didHighlightItemAtIndexPath:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "init_kind": "Designated"
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "description",
- "printedName": "description",
+ "kind": "Function",
+ "name": "collectionView",
+ "printedName": "collectionView(_:didUnhighlightItemAt:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit8ViewNameO11descriptionSSvp",
- "mangledName": "$s7LinkKit8ViewNameO11descriptionSSvp",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didUnhighlightItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_20didUnhighlightItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:didUnhighlightItemAtIndexPath:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit8ViewNameO11descriptionSSvg",
- "mangledName": "$s7LinkKit8ViewNameO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "name": "collectionView",
+ "printedName": "collectionView(_:numberOfItemsInSection:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
},
{
"kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit8ViewNameO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit8ViewNameO6encode2toys7Encoder_p_tKF",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:numberOfItemsInSection:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_22numberOfItemsInSectionSiSo012UICollectionG0C_SitF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:numberOfItemsInSection:",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "throwing": true,
+ "isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
+ "name": "collectionView",
+ "printedName": "collectionView(_:cellForItemAt:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "UICollectionViewCell",
+ "printedName": "UIKit.UICollectionViewCell",
+ "usr": "c:objc(cs)UICollectionViewCell"
},
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
},
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit8ViewNameO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit8ViewNameO2eeoiySbAC_ACtFZ",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:cellForItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_13cellForItemAtSo012UICollectionG4CellCSo0mG0C_10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
- "static": true,
+ "objc_name": "collectionView:cellForItemAtIndexPath:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "toObjCValue",
- "printedName": "toObjCValue",
+ "kind": "Function",
+ "name": "collectionView",
+ "printedName": "collectionView(_:layout:sizeForItemAt:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKViewNameValue?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKViewNameValue",
- "printedName": "LinkKit.PLKViewNameValue",
- "usr": "c:@E@PLKViewNameValue"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvp",
- "mangledName": "$s7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
+ "name": "CGSize",
+ "printedName": "CoreFoundation.CGSize",
+ "usr": "c:@S@CGSize"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKViewNameValue?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKViewNameValue",
- "printedName": "LinkKit.PLKViewNameValue",
- "usr": "c:@E@PLKViewNameValue"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvg",
- "mangledName": "$s7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
+ "kind": "TypeNominal",
+ "name": "UICollectionView",
+ "printedName": "UIKit.UICollectionView",
+ "usr": "c:objc(cs)UICollectionView"
+ },
{
"kind": "TypeNominal",
- "name": "PLKViewName",
- "printedName": "LinkKit.PLKViewName",
- "usr": "c:objc(cs)PLKViewName"
+ "name": "UICollectionViewLayout",
+ "printedName": "UIKit.UICollectionViewLayout",
+ "usr": "c:objc(cs)UICollectionViewLayout"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "IndexPath",
+ "printedName": "Foundation.IndexPath",
+ "usr": "s:10Foundation9IndexPathV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvp",
- "mangledName": "$s7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvp",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:layout:sizeForItemAtIndexPath:",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_6layout13sizeForItemAtSo6CGSizeVSo012UICollectionG0C_So0oG6LayoutC10Foundation9IndexPathVtF",
"moduleName": "LinkKit",
+ "objc_name": "collectionView:layout:sizeForItemAtIndexPath:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
"isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKViewName",
- "printedName": "LinkKit.PLKViewName",
- "usr": "c:objc(cs)PLKViewName"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvg",
- "mangledName": "$s7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit8ViewNameO",
- "mangledName": "$s7LinkKit8ViewNameO",
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView",
+ "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC",
"moduleName": "LinkKit",
"declAttributes": [
+ "Custom",
+ "Final",
"AccessControl",
- "RawDocComment"
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIView",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "UIKit.UIView",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
],
"conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
{
"kind": "Conformance",
"name": "CustomStringConvertible",
@@ -27841,258 +27341,407 @@
},
{
"kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
},
{
"kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
},
{
"kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "__DefaultCustomPlaygroundQuickLookable",
+ "printedName": "__DefaultCustomPlaygroundQuickLookable",
+ "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
+ "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "LayoutArea",
+ "printedName": "LayoutArea",
+ "usr": "s:9AppCoreUI10LayoutAreaP",
+ "mangledName": "$s9AppCoreUI10LayoutAreaP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
{
"kind": "TypeDecl",
- "name": "EventMetadata",
- "printedName": "EventMetadata",
+ "name": "TodoPaneViewController",
+ "printedName": "TodoPaneViewController",
"children": [
{
- "kind": "Var",
- "name": "accountNumberMask",
- "printedName": "accountNumberMask",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(with:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "TodoPaneViewController",
+ "printedName": "LinkKit.TodoPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TODOViewModel",
+ "printedName": "Workflow.TODOViewModel",
+ "usr": "s:8Workflow13TODOViewModelC"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit22TodoPaneViewControllerC4withAC8Workflow13TODOViewModelC_tcfc",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC4withAC8Workflow13TODOViewModelC_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Custom",
+ "Required",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.TodoPaneViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "TodoPaneViewController",
+ "printedName": "LinkKit.TodoPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC11viewDidLoadyyF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidAppear",
+ "printedName": "viewDidAppear(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMaskSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMaskSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)viewDidAppear:",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC13viewDidAppearyySbF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidAppear:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "errorCode",
- "printedName": "errorCode",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "TODOViewModel",
+ "printedName": "Workflow.TODOViewModel",
+ "usr": "s:8Workflow13TODOViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvp",
+ "usr": "s:7LinkKit22TodoPaneViewControllerC9viewModel33_F224A9F6BC8F4F117F334109F7CC7D5DLL8Workflow08TODOViewH0Cvp",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC9viewModel33_F224A9F6BC8F4F117F334109F7CC7D5DLL8Workflow08TODOViewH0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Custom",
+ "Final",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "TodoPaneViewController",
+ "printedName": "LinkKit.TodoPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ "usr": "s:Sq"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV9errorCodeAA09ExitErrorF0OSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController",
+ "mangledName": "$s7LinkKit22TodoPaneViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ReactNativeLinkKit",
+ "printedName": "ReactNativeLinkKit",
+ "children": [
{
"kind": "Var",
- "name": "errorMessage",
- "printedName": "errorMessage",
+ "name": "sdkVersion",
+ "printedName": "sdkVersion",
"children": [
{
"kind": "TypeNominal",
@@ -28110,9 +27759,10 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvp",
+ "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvpZ",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
@@ -28142,10 +27792,14 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvg",
+ "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvgZ",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
},
{
@@ -28174,10 +27828,14 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvs",
+ "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvsZ",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvsZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "set"
},
{
@@ -28192,463 +27850,280 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12errorMessageSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV12errorMessageSSSgvM",
+ "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvMZ",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvMZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "_modify"
}
]
},
{
- "kind": "Var",
- "name": "exitStatus",
- "printedName": "exitStatus",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ],
- "usr": "s:Sq"
+ "name": "ReactNativeLinkKit",
+ "printedName": "LinkKit.ReactNativeLinkKit",
+ "usr": "s:7LinkKit011ReactNativeaB0V"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit011ReactNativeaB0VACycfc",
+ "mangledName": "$s7LinkKit011ReactNativeaB0VACycfc",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV10exitStatusAA04ExitF0OSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit011ReactNativeaB0V",
+ "mangledName": "$s7LinkKit011ReactNativeaB0V",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
{
- "kind": "Var",
- "name": "institutionID",
- "printedName": "institutionID",
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AuthenticationServices",
+ "printedName": "AuthenticationServices",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkOOPWebViewController",
+ "printedName": "LinkOOPWebViewController",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(ViewModel:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "LinkOOPWebViewController",
+ "printedName": "LinkKit.LinkOOPWebViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "OutOfProcessWebViewModel",
+ "printedName": "Workflow.OutOfProcessWebViewModel",
+ "usr": "s:8Workflow24OutOfProcessWebViewModelC"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A20OOPWebViewControllerC0D5ModelAC8Workflow015OutOfProcessWebdF0C_tcfc",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC0D5ModelAC8Workflow015OutOfProcessWebdF0C_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Custom",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidAppear",
+ "printedName": "viewDidAppear(_:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)viewDidAppear:",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC13viewDidAppearyySbF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidAppear:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
+ "children": [
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13institutionIDSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV13institutionIDSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC11viewDidLoadyyF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "institutionName",
- "printedName": "institutionName",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "OutOfProcessWebViewModel",
+ "printedName": "Workflow.OutOfProcessWebViewModel",
+ "usr": "s:8Workflow24OutOfProcessWebViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvp",
+ "usr": "s:7LinkKit0A20OOPWebViewControllerC9viewModel33_511DB72405631A29D0102CBAA022739ALL8Workflow015OutOfProcessWebdG0Cvp",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC9viewModel33_511DB72405631A29D0102CBAA022739ALL8Workflow015OutOfProcessWebdG0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Custom",
+ "Final",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV15institutionNameSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV15institutionNameSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "institutionSearchQuery",
- "printedName": "institutionSearchQuery",
+ "name": "webAuthenticationSession",
+ "printedName": "webAuthenticationSession",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "Any?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ProtocolComposition",
+ "printedName": "Any"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvp",
+ "usr": "s:7LinkKit0A20OOPWebViewControllerC24webAuthenticationSession33_511DB72405631A29D0102CBAA022739ALLypSgvp",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC24webAuthenticationSession33_511DB72405631A29D0102CBAA022739ALLypSgvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV22institutionSearchQuerySSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV22institutionSearchQuerySSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
+ "fixedbinaryorder": 1,
+ "hasStorage": true
},
{
- "kind": "Var",
- "name": "isUpdateMode",
- "printedName": "isUpdateMode",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LinkOOPWebViewController",
+ "printedName": "LinkKit.LinkOOPWebViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController"
+ },
{
"kind": "TypeNominal",
"name": "Optional",
@@ -28662,214 +28137,494 @@
}
],
"usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvp",
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(url:popupBehavior:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Link_Workflow_Nodes_Panes_WebviewFallbackIOSPopupBehavior",
+ "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_WebviewFallbackIOSPopupBehavior",
+ "usr": "s:13WorkflowProto05Link_A44_Nodes_Panes_WebviewFallbackIOSPopupBehaviorO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A20OOPWebViewControllerC4open3url13popupBehaviory10Foundation3URLV_13WorkflowProto0a1_l36_Nodes_Panes_WebviewFallbackIOSPopupI0OtF",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC4open3url13popupBehaviory10Foundation3URLV_13WorkflowProto0a1_l36_Nodes_Panes_WebviewFallbackIOSPopupI0OtF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Final",
+ "Custom"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "presentationAnchor",
+ "printedName": "presentationAnchor(for:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UIWindow",
+ "printedName": "UIKit.UIWindow",
+ "usr": "c:objc(cs)UIWindow"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ASWebAuthenticationSession",
+ "printedName": "AuthenticationServices.ASWebAuthenticationSession",
+ "usr": "c:objc(cs)ASWebAuthenticationSession"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)LinkOOPWebViewController(im)presentationAnchorForWebAuthenticationSession:",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF",
+ "moduleName": "LinkKit",
+ "objc_name": "presentationAnchorForWebAuthenticationSession:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl",
"RawDocComment"
],
- "hasStorage": true,
- "accessors": [
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController",
+ "mangledName": "$s7LinkKit0A20OOPWebViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "OutOfProcessWebViewModelDelegate",
+ "printedName": "OutOfProcessWebViewModelDelegate",
+ "usr": "s:8Workflow32OutOfProcessWebViewModelDelegateP",
+ "mangledName": "$s8Workflow32OutOfProcessWebViewModelDelegateP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InstitutionErrorCode",
+ "printedName": "InstitutionErrorCode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "institutionDown",
+ "printedName": "institutionDown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO15institutionDownyA2CmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO15institutionDownyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "institutionNotResponding",
+ "printedName": "institutionNotResponding",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO24institutionNotRespondingyA2CmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO24institutionNotRespondingyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "institutionNotAvailable",
+ "printedName": "institutionNotAvailable",
+ "children": [
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12isUpdateModeSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV12isUpdateModeSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO23institutionNotAvailableyA2CmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO23institutionNotAvailableyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "matchReason",
- "printedName": "matchReason",
+ "name": "institutionNoLongerSupported",
+ "printedName": "institutionNoLongerSupported",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO28institutionNoLongerSupportedyA2CmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO28institutionNoLongerSupportedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InstitutionErrorCode.Type) -> (Swift.String) -> LinkKit.InstitutionErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.InstitutionErrorCode",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InstitutionErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InstitutionErrorCode",
+ "printedName": "LinkKit.InstitutionErrorCode",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO"
},
{
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV11matchReasonSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV11matchReasonSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO6stringACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "linkSessionID",
- "printedName": "linkSessionID",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
@@ -28879,15 +28634,12 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvp",
- "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -28902,22 +28654,43 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvg",
- "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvg",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
- "implicit": true,
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "institutionDownString",
+ "printedName": "institutionDownString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvpZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -28926,62 +28699,41 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvs",
- "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvs",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvgZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13linkSessionIDSSvM",
- "mangledName": "$s7LinkKit13EventMetadataV13linkSessionIDSSvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "mfaType",
- "printedName": "mfaType",
+ "name": "institutionNotRespondingString",
+ "printedName": "institutionNotRespondingString",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvpZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -28991,108 +28743,47 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvs",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvgZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV7mfaTypeAA7MFATypeOSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "requestID",
- "printedName": "requestID",
+ "name": "institutionNotAvailableString",
+ "printedName": "institutionNotAvailableString",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvpZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -29102,108 +28793,47 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvs",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvgZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9requestIDSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV9requestIDSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "routingNumber",
- "printedName": "routingNumber",
+ "name": "institutionNoLongerSupportedString",
+ "printedName": "institutionNoLongerSupportedString",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvpZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -29213,109 +28843,49 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvs",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvgZ",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV13routingNumberSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV13routingNumberSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "selection",
- "printedName": "selection",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.PLKInstitutionErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKInstitutionErrorCode",
+ "printedName": "LinkKit.PLKInstitutionErrorCode",
+ "usr": "c:@E@PLKInstitutionErrorCode"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvp",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvp",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -29325,400 +28895,452 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.String?",
+ "printedName": "LinkKit.PLKInstitutionErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKInstitutionErrorCode",
+ "printedName": "LinkKit.PLKInstitutionErrorCode",
+ "usr": "c:@E@PLKInstitutionErrorCode"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvg",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvg",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvg",
"moduleName": "LinkKit",
- "implicit": true,
+ "isFromExtension": true,
"accessorKind": "get"
- },
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit20InstitutionErrorCodeO",
+ "mangledName": "$s7LinkKit20InstitutionErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "InvalidRequestErrorCode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "missingFields",
+ "printedName": "missingFields",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9selectionSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV9selectionSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO13missingFieldsyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO13missingFieldsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "timestamp",
- "printedName": "timestamp",
+ "name": "unknownFields",
+ "printedName": "unknownFields",
"children": [
{
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvp",
- "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO13unknownFieldsyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO13unknownFieldsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvg",
- "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidField",
+ "printedName": "invalidField",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvs",
- "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV9timestamp10Foundation4DateVvM",
- "mangledName": "$s7LinkKit13EventMetadataV9timestamp10Foundation4DateVvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO12invalidFieldyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO12invalidFieldyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "viewName",
- "printedName": "viewName",
+ "name": "invalidBody",
+ "printedName": "invalidBody",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ViewName?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO11invalidBodyyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11invalidBodyyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidAddress",
+ "printedName": "invalidAddress",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ViewName?",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO14invalidAddressyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14invalidAddressyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "notFound",
+ "printedName": "notFound",
+ "children": [
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ViewName?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV8viewNameAA04ViewF0OSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO8notFoundyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO8notFoundyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "metadataJSON",
- "printedName": "metadataJSON",
+ "name": "sandboxOnly",
+ "printedName": "sandboxOnly",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvp",
- "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO11sandboxOnlyyA2CmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11sandboxOnlyyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> (Swift.String) -> LinkKit.InvalidRequestErrorCode",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.InvalidRequestErrorCode",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvg",
- "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidRequestErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
}
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvs",
- "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV12metadataJSONSSSgvM",
- "mangledName": "$s7LinkKit13EventMetadataV12metadataJSONSSSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "_modify"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(accountNumberMask:errorCode:errorMessage:exitStatus:institutionID:institutionName:institutionSearchQuery:isUpdateMode:matchReason:linkSessionID:mfaType:requestID:routingNumber:selection:timestamp:viewName:metadataJSON:)",
+ "printedName": "init(string:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
+ "name": "InvalidRequestErrorCode",
+ "printedName": "LinkKit.InvalidRequestErrorCode",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6stringACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11descriptionSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29727,28 +29349,43 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "missingFieldsString",
+ "printedName": "missingFieldsString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29757,43 +29394,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitStatus?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitStatus",
- "printedName": "LinkKit.ExitStatus",
- "usr": "s:7LinkKit10ExitStatusO"
- }
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "unknownFieldsString",
+ "printedName": "unknownFieldsString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29802,28 +29444,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidFieldString",
+ "printedName": "invalidFieldString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29832,13 +29494,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidBodyString",
+ "printedName": "invalidBodyString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29847,34 +29544,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidAddressString",
+ "printedName": "invalidAddressString",
+ "children": [
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29883,13 +29594,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "notFoundString",
+ "printedName": "notFoundString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29898,13 +29644,48 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sandboxOnlyString",
+ "printedName": "sandboxOnlyString",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvpZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -29913,239 +29694,144 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvgZ",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
+ "children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.ViewName?",
+ "printedName": "LinkKit.PLKInvalidRequestErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "ViewName",
- "printedName": "LinkKit.ViewName",
- "usr": "s:7LinkKit8ViewNameO"
+ "name": "PLKInvalidRequestErrorCode",
+ "printedName": "LinkKit.PLKInvalidRequestErrorCode",
+ "usr": "c:@E@PLKInvalidRequestErrorCode"
}
],
- "hasDefaultArg": true,
"usr": "s:Sq"
- },
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKInvalidRequestErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKInvalidRequestErrorCode",
+ "printedName": "LinkKit.PLKInvalidRequestErrorCode",
+ "usr": "c:@E@PLKInvalidRequestErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "hasDefaultArg": true,
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13EventMetadataV17accountNumberMask9errorCode0H7Message10exitStatus13institutionID0M4Name0M11SearchQuery12isUpdateMode11matchReason011linkSessionN07mfaType07requestN007routingF09selection9timestamp04viewO012metadataJSONACSSSg_AA09ExitErrorI0OSgAuA04ExitL0OSgA5USSAA7MFATypeOSgA3U10Foundation4DateVAA04ViewO0OSgAUtcfc",
- "mangledName": "$s7LinkKit13EventMetadataV17accountNumberMask9errorCode0H7Message10exitStatus13institutionID0M4Name0M11SearchQuery12isUpdateMode11matchReason011linkSessionN07mfaType07requestN007routingF09selection9timestamp04viewO012metadataJSONACSSSg_AA09ExitErrorI0OSgAuA04ExitL0OSgA5USSAA7MFATypeOSgA3U10Foundation4DateVAA04ViewO0OSgAUtcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit23InvalidRequestErrorCodeO",
+ "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13EventMetadataV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit13EventMetadataV4fromACs7Decoder_p_tKcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit13EventMetadataV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit13EventMetadataV6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- },
- {
- "kind": "TypeNominal",
- "name": "EventMetadata",
- "printedName": "LinkKit.EventMetadata",
- "usr": "s:7LinkKit13EventMetadataV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit13EventMetadataV2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit13EventMetadataV2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKEventMetadata",
- "printedName": "LinkKit.PLKEventMetadata",
- "usr": "c:objc(cs)PLKEventMetadata"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvp",
- "mangledName": "$s7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKEventMetadata",
- "printedName": "LinkKit.PLKEventMetadata",
- "usr": "c:objc(cs)PLKEventMetadata"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvg",
- "mangledName": "$s7LinkKit13EventMetadataV6toObjCSo08PLKEventD0Cvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit13EventMetadataV",
- "mangledName": "$s7LinkKit13EventMetadataV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
{
"kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "MFAType",
- "printedName": "MFAType",
+ "name": "ItemErrorCode",
+ "printedName": "ItemErrorCode",
"children": [
{
"kind": "Var",
- "name": "code",
- "printedName": "code",
+ "name": "insufficientCredentials",
+ "printedName": "insufficientCredentials",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.MFAType.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30153,8 +29839,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit7MFATypeO4codeyA2CmF",
- "mangledName": "$s7LinkKit7MFATypeO4codeyA2CmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO23insufficientCredentialsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23insufficientCredentialsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -30162,30 +29848,30 @@
},
{
"kind": "Var",
- "name": "device",
- "printedName": "device",
+ "name": "invalidCredentials",
+ "printedName": "invalidCredentials",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.MFAType.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30193,8 +29879,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit7MFATypeO6deviceyA2CmF",
- "mangledName": "$s7LinkKit7MFATypeO6deviceyA2CmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO18invalidCredentialsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO18invalidCredentialsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -30202,30 +29888,30 @@
},
{
"kind": "Var",
- "name": "questions",
- "printedName": "questions",
+ "name": "invalidMfa",
+ "printedName": "invalidMfa",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.MFAType.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30233,8 +29919,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit7MFATypeO9questionsyA2CmF",
- "mangledName": "$s7LinkKit7MFATypeO9questionsyA2CmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO10invalidMfayA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO10invalidMfayA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -30242,30 +29928,30 @@
},
{
"kind": "Var",
- "name": "selections",
- "printedName": "selections",
+ "name": "invalidSendMethod",
+ "printedName": "invalidSendMethod",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.MFAType.Type) -> LinkKit.MFAType",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.MFAType.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30273,569 +29959,279 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit7MFATypeO10selectionsyA2CmF",
- "mangledName": "$s7LinkKit7MFATypeO10selectionsyA2CmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO17invalidSendMethodyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO17invalidSendMethodyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Var",
+ "name": "invalidUpdatedUsername",
+ "printedName": "invalidUpdatedUsername",
"children": [
{
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit7MFATypeO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit7MFATypeO4fromACs7Decoder_p_tKcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO22invalidUpdatedUsernameyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO22invalidUpdatedUsernameyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
+ "kind": "Var",
+ "name": "itemLocked",
+ "printedName": "itemLocked",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.MFAType?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit7MFATypeO8rawValueACSgSS_tcfc",
- "mangledName": "$s7LinkKit7MFATypeO8rawValueACSgSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO10itemLockedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO10itemLockedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "itemLoginRequired",
+ "printedName": "itemLoginRequired",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO11descriptionSSvp",
- "mangledName": "$s7LinkKit7MFATypeO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO11descriptionSSvg",
- "mangledName": "$s7LinkKit7MFATypeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO17itemLoginRequiredyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO17itemLoginRequiredyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "kind": "Var",
+ "name": "itemNoError",
+ "printedName": "itemNoError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit7MFATypeO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit7MFATypeO6encode2toys7Encoder_p_tKF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD0yA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD0yA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "codeString",
- "printedName": "codeString",
+ "name": "itemNotSupported",
+ "printedName": "itemNotSupported",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO10codeStringSSvpZ",
- "mangledName": "$s7LinkKit7MFATypeO10codeStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO10codeStringSSvgZ",
- "mangledName": "$s7LinkKit7MFATypeO10codeStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO16itemNotSupportedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16itemNotSupportedyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "deviceString",
- "printedName": "deviceString",
+ "name": "incorrectDepositAmounts",
+ "printedName": "incorrectDepositAmounts",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO12deviceStringSSvpZ",
- "mangledName": "$s7LinkKit7MFATypeO12deviceStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO12deviceStringSSvgZ",
- "mangledName": "$s7LinkKit7MFATypeO12deviceStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "questionsString",
- "printedName": "questionsString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO15questionsStringSSvpZ",
- "mangledName": "$s7LinkKit7MFATypeO15questionsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.ItemErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO15questionsStringSSvgZ",
- "mangledName": "$s7LinkKit7MFATypeO15questionsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "selectionsString",
- "printedName": "selectionsString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO16selectionsStringSSvpZ",
- "mangledName": "$s7LinkKit7MFATypeO16selectionsStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit13ItemErrorCodeO23incorrectDepositAmountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23incorrectDepositAmountsyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO16selectionsStringSSvgZ",
- "mangledName": "$s7LinkKit7MFATypeO16selectionsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "MFAType",
- "printedName": "LinkKit.MFAType",
- "usr": "s:7LinkKit7MFATypeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit7MFATypeO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit7MFATypeO2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO9hashValueSivp",
- "mangledName": "$s7LinkKit7MFATypeO9hashValueSivp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO9hashValueSivg",
- "mangledName": "$s7LinkKit7MFATypeO9hashValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit7MFATypeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s7LinkKit7MFATypeO4hash4intoys6HasherVz_tF",
- "moduleName": "LinkKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKMFAType",
- "printedName": "LinkKit.PLKMFAType",
- "usr": "c:@E@PLKMFAType"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvp",
- "mangledName": "$s7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKMFAType",
- "printedName": "LinkKit.PLKMFAType",
- "usr": "c:@E@PLKMFAType"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvg",
- "mangledName": "$s7LinkKit7MFATypeO6toObjCSo10PLKMFATypeVvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
+ "RawDocComment"
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit7MFATypeO",
- "mangledName": "$s7LinkKit7MFATypeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
},
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PresentationMethod",
- "printedName": "PresentationMethod",
- "children": [
{
"kind": "Var",
- "name": "viewController",
- "printedName": "viewController",
+ "name": "userSetupRequired",
+ "printedName": "userSetupRequired",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.PresentationMethod.Type) -> (UIKit.UIViewController) -> LinkKit.PresentationMethod",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> LinkKit.PresentationMethod",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.PresentationMethod.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30843,8 +30239,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18PresentationMethodO14viewControlleryACSo06UIViewF0CcACmF",
- "mangledName": "$s7LinkKit18PresentationMethodO14viewControlleryACSo06UIViewF0CcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO17userSetupRequiredyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO17userSetupRequiredyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -30852,80 +30248,30 @@
},
{
"kind": "Var",
- "name": "custom",
- "printedName": "custom",
+ "name": "mfaNotSupported",
+ "printedName": "mfaNotSupported",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.PresentationMethod.Type) -> (@escaping (UIKit.UIViewController) -> (), @escaping (UIKit.UIViewController) -> ()) -> LinkKit.PresentationMethod",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(@escaping (UIKit.UIViewController) -> (), @escaping (UIKit.UIViewController) -> ()) -> LinkKit.PresentationMethod",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "((UIKit.UIViewController) -> (), (UIKit.UIViewController) -> ())",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.PresentationMethod.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -30933,67 +30279,39 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18PresentationMethodO6customyACySo16UIViewControllerCc_yAFctcACmF",
- "mangledName": "$s7LinkKit18PresentationMethodO6customyACySo16UIViewControllerCc_yAFctcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO15mfaNotSupportedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO15mfaNotSupportedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit18PresentationMethodO",
- "mangledName": "$s7LinkKit18PresentationMethodO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ExitErrorCode",
- "printedName": "ExitErrorCode",
- "children": [
+ },
{
"kind": "Var",
- "name": "apiError",
- "printedName": "apiError",
+ "name": "noAccounts",
+ "printedName": "noAccounts",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.ApiErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ApiErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31001,8 +30319,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO03apiD0yAcA03ApidE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD0yAcA03ApidE0OcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO10noAccountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO10noAccountsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31010,96 +30328,30 @@
},
{
"kind": "Var",
- "name": "authError",
- "printedName": "authError",
+ "name": "noAuthAccounts",
+ "printedName": "noAuthAccounts",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.AuthErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.AuthErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO04authD0yAcA04AuthdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04authD0yAcA04AuthdE0OcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "assetReportError",
- "printedName": "assetReportError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.AssetReportErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
- }
- ]
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31107,8 +30359,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD0yAcA05AssetgdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD0yAcA05AssetgdE0OcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO14noAuthAccountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO14noAuthAccountsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31116,43 +30368,30 @@
},
{
"kind": "Var",
- "name": "internal",
- "printedName": "internal",
+ "name": "noInvestmentAccounts",
+ "printedName": "noInvestmentAccounts",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (Swift.String) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31160,8 +30399,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO8internalyACSScACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO8internalyACSScACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO20noInvestmentAccountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO20noInvestmentAccountsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31169,78 +30408,25 @@
},
{
"kind": "Var",
- "name": "institutionError",
- "printedName": "institutionError",
+ "name": "noLiabilityAccounts",
+ "printedName": "noLiabilityAccounts",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InstitutionErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO011institutionD0yAcA011InstitutiondE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD0yAcA011InstitutiondE0OcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "itemError",
- "printedName": "itemError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.ItemErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
{
"kind": "TypeNominal",
"name": "ItemErrorCode",
@@ -31248,26 +30434,13 @@
"usr": "s:7LinkKit13ItemErrorCodeO"
}
]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ]
}
]
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO04itemD0yAcA04ItemdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD0yAcA04ItemdE0OcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO19noLiabilityAccountsyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO19noLiabilityAccountsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31275,43 +30448,30 @@
},
{
"kind": "Var",
- "name": "invalidInput",
- "printedName": "invalidInput",
+ "name": "productNotReady",
+ "printedName": "productNotReady",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InvalidInputErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31319,8 +30479,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO12invalidInputyAcA07InvalidgdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO12invalidInputyAcA07InvalidgdE0OcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO15productNotReadyyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO15productNotReadyyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31328,43 +30488,30 @@
},
{
"kind": "Var",
- "name": "invalidRequest",
- "printedName": "invalidRequest",
+ "name": "productsNotSupported",
+ "printedName": "productsNotSupported",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.InvalidRequestErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31372,8 +30519,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO14invalidRequestyAcA07InvalidgdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO14invalidRequestyAcA07InvalidgdE0OcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO20productsNotSupportedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO20productsNotSupportedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31381,43 +30528,30 @@
},
{
"kind": "Var",
- "name": "rateLimitExceeded",
- "printedName": "rateLimitExceeded",
+ "name": "instantMatchFailed",
+ "printedName": "instantMatchFailed",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (LinkKit.RateLimitErrorCode) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode) -> LinkKit.ExitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31425,8 +30559,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO17rateLimitExceededyAcA04RategdE0OcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO17rateLimitExceededyAcA04RategdE0OcACmF",
+ "usr": "s:7LinkKit13ItemErrorCodeO18instantMatchFailedyA2CmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO18instantMatchFailedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -31440,50 +30574,37 @@
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.Type) -> (Swift.String, Swift.String) -> LinkKit.ExitErrorCode",
+ "printedName": "(LinkKit.ItemErrorCode.Type) -> (Swift.String) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.ExitErrorCode",
+ "printedName": "(Swift.String) -> LinkKit.ItemErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(type: Swift.String, code: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
]
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.Type",
+ "printedName": "LinkKit.ItemErrorCode.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
}
]
}
@@ -31491,39 +30612,35 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO7unknownyACSS_SStcACmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO7unknownyACSS_SStcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
+ "usr": "s:7LinkKit13ItemErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(from:)",
+ "printedName": "init(string:)",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "ItemErrorCode",
+ "printedName": "LinkKit.ItemErrorCode",
+ "usr": "s:7LinkKit13ItemErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit13ExitErrorCodeO4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit13ExitErrorCodeO4fromACs7Decoder_p_tKcfc",
+ "usr": "s:7LinkKit13ItemErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO6stringACSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
],
- "throwing": true,
"init_kind": "Designated"
},
{
@@ -31539,8 +30656,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit13ExitErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit13ItemErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -31559,65 +30676,68 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit13ExitErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit13ItemErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
"accessorKind": "get"
}
]
},
{
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "kind": "Var",
+ "name": "insufficientCredentialsString",
+ "printedName": "insufficientCredentialsString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit13ExitErrorCodeO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO6encode2toys7Encoder_p_tKF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "from",
- "printedName": "from(errorType:errorCode:)",
- "children": [
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidCredentialsString",
+ "printedName": "invalidCredentialsString",
+ "children": [
{
"kind": "TypeNominal",
"name": "String",
@@ -31625,116 +30745,24 @@
"usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit13ExitErrorCodeO4from9errorType0gE0ACSgSS_SStFZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO4from9errorType0gE0ACSgSS_SStFZ",
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "CodingKeys",
- "printedName": "CodingKeys",
- "children": [
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "Var",
- "name": "errorType",
- "printedName": "errorType",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.CodingKeys.Type) -> LinkKit.ExitErrorCode.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO9errorTypeyA2EmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO9errorTypeyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "errorCode",
- "printedName": "errorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorCode.CodingKeys.Type) -> LinkKit.ExitErrorCode.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO05errorE0yA2EmF",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO05errorE0yA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -31742,110 +30770,49 @@
"usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueAESgSS_tcfc",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
+ "declAttributes": [
+ "Transparent"
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvp",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvg",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8rawValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidMfaString",
+ "printedName": "invalidMfaString",
+ "children": [
{
- "kind": "Var",
- "name": "stringValue",
- "printedName": "stringValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvp",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvg",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit13ItemErrorCodeO16invalidMfaStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16invalidMfaStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringValue:)",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -31853,182 +30820,23 @@
"usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO11stringValueAESgSS_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "intValue",
- "printedName": "intValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvp",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvg",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueSiSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(intValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.ExitErrorCode.CodingKeys",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO8intValueAESgSi_tcfc",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO8intValueAESgSi_tcfc",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit13ItemErrorCodeO16invalidMfaStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16invalidMfaStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
"implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit13ExitErrorCodeO10CodingKeysO",
- "mangledName": "$s7LinkKit13ExitErrorCodeO10CodingKeysO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "enumRawTypeName": "String",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
+ "declAttributes": [
+ "Transparent"
],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "CodingKey",
- "printedName": "CodingKey",
- "usr": "s:s9CodingKeyP",
- "mangledName": "$ss9CodingKeyP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "invalidRequestString",
- "printedName": "invalidRequestString",
+ "name": "invalidSendMethodString",
+ "printedName": "invalidSendMethodString",
"children": [
{
"kind": "TypeNominal",
@@ -32038,8 +30846,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO20invalidRequestStringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO20invalidRequestStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32063,8 +30871,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO20invalidRequestStringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO20invalidRequestStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32077,8 +30885,8 @@
},
{
"kind": "Var",
- "name": "invalidInputString",
- "printedName": "invalidInputString",
+ "name": "invalidUpdatedUsernameString",
+ "printedName": "invalidUpdatedUsernameString",
"children": [
{
"kind": "TypeNominal",
@@ -32088,8 +30896,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO18invalidInputStringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO18invalidInputStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32113,8 +30921,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO18invalidInputStringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO18invalidInputStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32127,8 +30935,8 @@
},
{
"kind": "Var",
- "name": "institutionErrorString",
- "printedName": "institutionErrorString",
+ "name": "itemLockedString",
+ "printedName": "itemLockedString",
"children": [
{
"kind": "TypeNominal",
@@ -32138,8 +30946,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO011institutionD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD6StringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO16itemLockedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16itemLockedStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32163,8 +30971,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO011institutionD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011institutionD6StringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO16itemLockedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16itemLockedStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32177,8 +30985,8 @@
},
{
"kind": "Var",
- "name": "rateLimitExceededString",
- "printedName": "rateLimitExceededString",
+ "name": "itemLoginRequiredString",
+ "printedName": "itemLoginRequiredString",
"children": [
{
"kind": "TypeNominal",
@@ -32188,8 +30996,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32213,8 +31021,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO23rateLimitExceededStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32227,8 +31035,8 @@
},
{
"kind": "Var",
- "name": "apiErrorString",
- "printedName": "apiErrorString",
+ "name": "itemNoErrorString",
+ "printedName": "itemNoErrorString",
"children": [
{
"kind": "TypeNominal",
@@ -32238,8 +31046,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO03apiD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD6StringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD6StringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD6StringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32263,8 +31071,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO03apiD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO03apiD6StringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD6StringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD6StringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32277,8 +31085,8 @@
},
{
"kind": "Var",
- "name": "itemErrorString",
- "printedName": "itemErrorString",
+ "name": "itemNotSupportedString",
+ "printedName": "itemNotSupportedString",
"children": [
{
"kind": "TypeNominal",
@@ -32288,8 +31096,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO04itemD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD6StringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32313,8 +31121,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO04itemD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04itemD6StringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32327,8 +31135,8 @@
},
{
"kind": "Var",
- "name": "authErrorString",
- "printedName": "authErrorString",
+ "name": "incorrectDepositAmountsString",
+ "printedName": "incorrectDepositAmountsString",
"children": [
{
"kind": "TypeNominal",
@@ -32338,8 +31146,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO04authD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04authD6StringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32363,8 +31171,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO04authD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO04authD6StringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32377,8 +31185,8 @@
},
{
"kind": "Var",
- "name": "assetReportErrorString",
- "printedName": "assetReportErrorString",
+ "name": "userSetupRequiredString",
+ "printedName": "userSetupRequiredString",
"children": [
{
"kind": "TypeNominal",
@@ -32388,8 +31196,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD6StringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32413,8 +31221,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO011assetReportD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO011assetReportD6StringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32427,8 +31235,8 @@
},
{
"kind": "Var",
- "name": "internalString",
- "printedName": "internalString",
+ "name": "mfaNotSupportedString",
+ "printedName": "mfaNotSupportedString",
"children": [
{
"kind": "TypeNominal",
@@ -32438,8 +31246,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ExitErrorCodeO14internalStringSSvpZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO14internalStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32463,8 +31271,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ExitErrorCodeO14internalStringSSvgZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO14internalStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32476,436 +31284,9 @@
]
},
{
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorCode",
- "printedName": "LinkKit.ExitErrorCode",
- "usr": "s:7LinkKit13ExitErrorCodeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit13ExitErrorCodeO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit13ExitErrorCodeO2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit13ExitErrorCodeO",
- "mangledName": "$s7LinkKit13ExitErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InvalidRequestErrorCode",
- "printedName": "InvalidRequestErrorCode",
- "children": [
- {
- "kind": "Var",
- "name": "missingFields",
- "printedName": "missingFields",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO13missingFieldsyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO13missingFieldsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknownFields",
- "printedName": "unknownFields",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO13unknownFieldsyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO13unknownFieldsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidField",
- "printedName": "invalidField",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO12invalidFieldyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO12invalidFieldyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidBody",
- "printedName": "invalidBody",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO11invalidBodyyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11invalidBodyyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidAddress",
- "printedName": "invalidAddress",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO14invalidAddressyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14invalidAddressyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "notFound",
- "printedName": "notFound",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO8notFoundyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO8notFoundyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "sandboxOnly",
- "printedName": "sandboxOnly",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO11sandboxOnlyyA2CmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11sandboxOnlyyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidRequestErrorCode.Type) -> (Swift.String) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.InvalidRequestErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidRequestErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidRequestErrorCode",
- "printedName": "LinkKit.InvalidRequestErrorCode",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6stringACSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
+ "kind": "Var",
+ "name": "noAccountsString",
+ "printedName": "noAccountsString",
"children": [
{
"kind": "TypeNominal",
@@ -32915,12 +31296,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit13ItemErrorCodeO16noAccountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16noAccountsStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -32935,17 +31321,22 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit13ItemErrorCodeO16noAccountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO16noAccountsStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "missingFieldsString",
- "printedName": "missingFieldsString",
+ "name": "noAuthAccountsString",
+ "printedName": "noAuthAccountsString",
"children": [
{
"kind": "TypeNominal",
@@ -32955,8 +31346,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -32980,8 +31371,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19missingFieldsStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -32994,8 +31385,8 @@
},
{
"kind": "Var",
- "name": "unknownFieldsString",
- "printedName": "unknownFieldsString",
+ "name": "noInvestmentAccountsString",
+ "printedName": "noInvestmentAccountsString",
"children": [
{
"kind": "TypeNominal",
@@ -33005,8 +31396,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33030,8 +31421,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO19unknownFieldsStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33044,8 +31435,8 @@
},
{
"kind": "Var",
- "name": "invalidFieldString",
- "printedName": "invalidFieldString",
+ "name": "noLiabilityAccountsString",
+ "printedName": "noLiabilityAccountsString",
"children": [
{
"kind": "TypeNominal",
@@ -33055,8 +31446,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33080,8 +31471,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO18invalidFieldStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33094,8 +31485,8 @@
},
{
"kind": "Var",
- "name": "invalidBodyString",
- "printedName": "invalidBodyString",
+ "name": "productNotReadyString",
+ "printedName": "productNotReadyString",
"children": [
{
"kind": "TypeNominal",
@@ -33105,8 +31496,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO21productNotReadyStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO21productNotReadyStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33130,8 +31521,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17invalidBodyStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO21productNotReadyStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO21productNotReadyStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33144,8 +31535,8 @@
},
{
"kind": "Var",
- "name": "invalidAddressString",
- "printedName": "invalidAddressString",
+ "name": "productsNotSupportedString",
+ "printedName": "productsNotSupportedString",
"children": [
{
"kind": "TypeNominal",
@@ -33155,8 +31546,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33180,8 +31571,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO20invalidAddressStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33194,8 +31585,8 @@
},
{
"kind": "Var",
- "name": "notFoundString",
- "printedName": "notFoundString",
+ "name": "instantMatchFailedString",
+ "printedName": "instantMatchFailedString",
"children": [
{
"kind": "TypeNominal",
@@ -33205,8 +31596,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvpZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvpZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -33230,8 +31621,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO14notFoundStringSSvgZ",
+ "usr": "s:7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvgZ",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -33244,77 +31635,27 @@
},
{
"kind": "Var",
- "name": "sandboxOnlyString",
- "printedName": "sandboxOnlyString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvpZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvgZ",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO17sandboxOnlyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.PLKInvalidRequestErrorCode?",
+ "printedName": "LinkKit.PLKItemErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKInvalidRequestErrorCode",
- "printedName": "LinkKit.PLKInvalidRequestErrorCode",
- "usr": "c:@E@PLKInvalidRequestErrorCode"
+ "name": "PLKItemErrorCode",
+ "printedName": "LinkKit.PLKItemErrorCode",
+ "usr": "c:@E@PLKItemErrorCode"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "usr": "s:7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvp",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvp",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessors": [
@@ -33326,21 +31667,21 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.PLKInvalidRequestErrorCode?",
+ "printedName": "LinkKit.PLKItemErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKInvalidRequestErrorCode",
- "printedName": "LinkKit.PLKInvalidRequestErrorCode",
- "usr": "c:@E@PLKInvalidRequestErrorCode"
+ "name": "PLKItemErrorCode",
+ "printedName": "LinkKit.PLKItemErrorCode",
+ "usr": "c:@E@PLKItemErrorCode"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "usr": "s:7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvg",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
@@ -33349,8 +31690,8 @@
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit23InvalidRequestErrorCodeO",
- "mangledName": "$s7LinkKit23InvalidRequestErrorCodeO",
+ "usr": "s:7LinkKit13ItemErrorCodeO",
+ "mangledName": "$s7LinkKit13ItemErrorCodeO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -33379,433 +31720,496 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "InvalidInputErrorCode",
- "printedName": "InvalidInputErrorCode",
+ "name": "LinkEvent",
+ "printedName": "LinkEvent",
"children": [
{
"kind": "Var",
- "name": "invalidApiKeys",
- "printedName": "invalidApiKeys",
+ "name": "eventName",
+ "printedName": "eventName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO14invalidApiKeysyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO14invalidApiKeysyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovp",
+ "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unauthorizedEnvironment",
- "printedName": "unauthorizedEnvironment",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO23unauthorizedEnvironmentyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO23unauthorizedEnvironmentyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidAccessToken",
- "printedName": "invalidAccessToken",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovg",
+ "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidAccessTokenyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidAccessTokenyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidPublicToken",
- "printedName": "invalidPublicToken",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0Ovs",
+ "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0Ovs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
+ "name": "Void",
+ "printedName": "()"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV9eventNameAA0cE0OvM",
+ "mangledName": "$s7LinkKit0A5EventV9eventNameAA0cE0OvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidPublicTokenyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidPublicTokenyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "invalidProduct",
- "printedName": "invalidProduct",
+ "name": "metadata",
+ "printedName": "metadata",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO14invalidProductyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO14invalidProductyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvp",
+ "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidAccountId",
- "printedName": "invalidAccountId",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvg",
+ "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvs",
+ "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV8metadataAA0C8MetadataVvM",
+ "mangledName": "$s7LinkKit0A5EventV8metadataAA0C8MetadataVvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO16invalidAccountIdyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO16invalidAccountIdyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
- "kind": "Var",
- "name": "invalidInstitution",
- "printedName": "invalidInstitution",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidInstitutionyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidInstitutionyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit0A5EventV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "tooManyVerificationAttempts",
- "printedName": "tooManyVerificationAttempts",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(eventName:metadata:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "EventName",
+ "printedName": "LinkKit.EventName",
+ "usr": "s:7LinkKit9EventNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "EventMetadata",
+ "printedName": "LinkKit.EventMetadata",
+ "usr": "s:7LinkKit13EventMetadataV"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO27tooManyVerificationAttemptsyA2CmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO27tooManyVerificationAttemptsyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV9eventName8metadataAcA0cE0O_AA0C8MetadataVtcfc",
+ "mangledName": "$s7LinkKit0A5EventV9eventName8metadataAcA0cE0O_AA0C8MetadataVtcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "RawDocComment"
- ]
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> (Swift.String) -> LinkKit.InvalidInputErrorCode",
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A5EventV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit0A5EventV6encode2toys7Encoder_p_tKF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "CodingKeys",
+ "printedName": "CodingKeys",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "eventName",
+ "printedName": "eventName",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String) -> LinkKit.InvalidInputErrorCode",
+ "printedName": "(LinkKit.LinkEvent.CodingKeys.Type) -> LinkKit.LinkEvent.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Metatype",
+ "printedName": "LinkKit.LinkEvent.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ]
}
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO9eventNameyA2EmF",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO9eventNameyA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
+ },
+ {
+ "kind": "Var",
+ "name": "metadata",
+ "printedName": "metadata",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkEvent.CodingKeys.Type) -> LinkKit.LinkEvent.CodingKeys",
"children": [
{
"kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.LinkEvent.CodingKeys.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ]
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8metadatayA2EmF",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8metadatayA2EmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 1
+ },
{
- "kind": "TypeNominal",
- "name": "InvalidInputErrorCode",
- "printedName": "LinkKit.InvalidInputErrorCode",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.LinkEvent.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueAESgSS_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
},
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6stringACSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "children": [
+ "kind": "Var",
+ "name": "rawValue",
+ "printedName": "rawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueSSvp",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8rawValueSSvg",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8rawValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
+ "kind": "Var",
+ "name": "stringValue",
+ "printedName": "stringValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueSSvp",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueSSvg",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(stringValue:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.LinkEvent.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
"name": "String",
@@ -33813,86 +32217,200 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO11descriptionSSvg",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO11stringValueAESgSS_tcfc",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO11stringValueAESgSS_tcfc",
"moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidApiKeysString",
- "printedName": "invalidApiKeysString",
- "children": [
+ "implicit": true,
+ "init_kind": "Designated"
+ },
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "Var",
+ "name": "intValue",
+ "printedName": "intValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueSiSgvp",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueSiSgvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueSiSgvg",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueSiSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(intValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.LinkEvent.CodingKeys?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CodingKeys",
+ "printedName": "LinkKit.LinkEvent.CodingKeys",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO8intValueAESgSi_tcfc",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO8intValueAESgSi_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvpZ",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit0A5EventV10CodingKeysO",
+ "mangledName": "$s7LinkKit0A5EventV10CodingKeysO",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "enumRawTypeName": "String",
+ "isEnumExhaustive": true,
+ "conformances": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CodingKey",
+ "printedName": "CodingKey",
+ "usr": "s:s9CodingKeyP",
+ "mangledName": "$ss9CodingKeyP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
{
"kind": "Var",
- "name": "unauthorizedEnvironmentString",
- "printedName": "unauthorizedEnvironmentString",
+ "name": "dateFormatter",
+ "printedName": "dateFormatter",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ISO8601DateFormatter",
+ "printedName": "Foundation.ISO8601DateFormatter",
+ "usr": "c:objc(cs)NSISO8601DateFormatter"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvpZ",
+ "usr": "s:7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvpZ",
+ "mangledName": "$s7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
"HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "HasStorage"
],
+ "isFromExtension": true,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -33903,153 +32421,46 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ISO8601DateFormatter",
+ "printedName": "Foundation.ISO8601DateFormatter",
+ "usr": "c:objc(cs)NSISO8601DateFormatter"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvgZ",
+ "usr": "s:7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvgZ",
+ "mangledName": "$s7LinkKit0A5EventV13dateFormatterSo013NSISO8601DateE0CvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
+ "isFromExtension": true,
"accessorKind": "get"
}
]
},
{
- "kind": "Var",
- "name": "invalidAccessTokenString",
- "printedName": "invalidAccessTokenString",
+ "kind": "Function",
+ "name": "from",
+ "printedName": "from(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidPublicTokenString",
- "printedName": "invalidPublicTokenString",
- "children": [
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidProductString",
- "printedName": "invalidProductString",
- "children": [
+ "name": "Link_Workflow_Nodes_Panes_SDKEvent",
+ "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_SDKEvent",
+ "usr": "s:13WorkflowProto05Link_A21_Nodes_Panes_SDKEventV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -34058,168 +32469,48 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidAccountIdString",
- "printedName": "invalidAccountIdString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A5EventV4fromyAC13WorkflowProto0a1_E21_Nodes_Panes_SDKEventV_SSSgtFZ",
+ "mangledName": "$s7LinkKit0A5EventV4fromyAC13WorkflowProto0a1_E21_Nodes_Panes_SDKEventV_SSSgtFZ",
"moduleName": "LinkKit",
"static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "invalidInstitutionString",
- "printedName": "invalidInstitutionString",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "tooManyVerificationAttemptsString",
- "printedName": "tooManyVerificationAttemptsString",
- "children": [
+ "kind": "TypeNominal",
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvpZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A5EventV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit0A5EventV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvgZ",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
@@ -34228,23 +32519,18 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInvalidInputErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInvalidInputErrorCode",
- "printedName": "LinkKit.PLKInvalidInputErrorCode",
- "usr": "c:@E@PLKInvalidInputErrorCode"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKLinkEvent",
+ "printedName": "LinkKit.PLKLinkEvent",
+ "usr": "c:objc(cs)PLKLinkEvent"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "usr": "s:7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvp",
+ "mangledName": "$s7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvp",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
"isFromExtension": true,
"accessors": [
{
@@ -34254,22 +32540,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInvalidInputErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKInvalidInputErrorCode",
- "printedName": "LinkKit.PLKInvalidInputErrorCode",
- "usr": "c:@E@PLKInvalidInputErrorCode"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKLinkEvent",
+ "printedName": "LinkKit.PLKLinkEvent",
+ "usr": "c:objc(cs)PLKLinkEvent"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "usr": "s:7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvg",
+ "mangledName": "$s7LinkKit0A5EventV6toObjCSo07PLKLinkC0Cvg",
"moduleName": "LinkKit",
"isFromExtension": true,
"accessorKind": "get"
@@ -34277,68 +32555,76 @@
]
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit21InvalidInputErrorCodeO",
- "mangledName": "$s7LinkKit21InvalidInputErrorCodeO",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit0A5EventV",
+ "mangledName": "$s7LinkKit0A5EventV",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "RateLimitErrorCode",
- "printedName": "RateLimitErrorCode",
+ "name": "Product",
+ "printedName": "Product",
"children": [
{
"kind": "Var",
- "name": "accountsLimit",
- "printedName": "accountsLimit",
+ "name": "assets",
+ "printedName": "assets",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34346,8 +32632,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO6assetsyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO6assetsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34355,30 +32641,30 @@
},
{
"kind": "Var",
- "name": "additionLimit",
- "printedName": "additionLimit",
+ "name": "auth",
+ "printedName": "auth",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34386,8 +32672,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO4authyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO4authyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34395,30 +32681,30 @@
},
{
"kind": "Var",
- "name": "authLimit",
- "printedName": "authLimit",
+ "name": "depositSwitch",
+ "printedName": "depositSwitch",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34426,8 +32712,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04authD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO13depositSwitchyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO13depositSwitchyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34435,30 +32721,30 @@
},
{
"kind": "Var",
- "name": "identityLimit",
- "printedName": "identityLimit",
+ "name": "identity",
+ "printedName": "identity",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34466,8 +32752,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO8identityyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO8identityyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34475,30 +32761,30 @@
},
{
"kind": "Var",
- "name": "incomeLimit",
- "printedName": "incomeLimit",
+ "name": "income",
+ "printedName": "income",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34506,8 +32792,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO6incomeyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO6incomeyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34515,30 +32801,30 @@
},
{
"kind": "Var",
- "name": "itemGetLimit",
- "printedName": "itemGetLimit",
+ "name": "investments",
+ "printedName": "investments",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34546,8 +32832,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO11investmentsyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO11investmentsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34555,30 +32841,30 @@
},
{
"kind": "Var",
- "name": "rateLimit",
- "printedName": "rateLimit",
+ "name": "liabilities",
+ "printedName": "liabilities",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34586,8 +32872,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO11liabilitiesyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO11liabilitiesyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34595,30 +32881,30 @@
},
{
"kind": "Var",
- "name": "transactionsLimit",
- "printedName": "transactionsLimit",
+ "name": "liabilitiesReport",
+ "printedName": "liabilitiesReport",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34626,8 +32912,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD0yA2CmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD0yA2CmF",
+ "usr": "s:7LinkKit7ProductO17liabilitiesReportyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO17liabilitiesReportyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -34635,43 +32921,30 @@
},
{
"kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "name": "paymentInitiation",
+ "printedName": "paymentInitiation",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.RateLimitErrorCode.Type) -> (Swift.String) -> LinkKit.RateLimitErrorCode",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.RateLimitErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.RateLimitErrorCode.Type",
+ "printedName": "LinkKit.Product.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
]
}
@@ -34679,36 +32952,52 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit18RateLimitErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit7ProductO17paymentInitiationyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO17paymentInitiationyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
+ "kind": "Var",
+ "name": "transactions",
+ "printedName": "transactions",
"children": [
{
- "kind": "TypeNominal",
- "name": "RateLimitErrorCode",
- "printedName": "LinkKit.RateLimitErrorCode",
- "usr": "s:7LinkKit18RateLimitErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.Product.Type) -> LinkKit.Product",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.Product.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO6stringACSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit7ProductO12transactionsyA2CmF",
+ "mangledName": "$s7LinkKit7ProductO12transactionsyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
@@ -34723,8 +33012,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit7ProductO11descriptionSSvp",
+ "mangledName": "$s7LinkKit7ProductO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -34743,8 +33032,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit7ProductO11descriptionSSvg",
+ "mangledName": "$s7LinkKit7ProductO11descriptionSSvg",
"moduleName": "LinkKit",
"accessorKind": "get"
}
@@ -34752,8 +33041,8 @@
},
{
"kind": "Var",
- "name": "accountsLimitString",
- "printedName": "accountsLimitString",
+ "name": "assetsString",
+ "printedName": "assetsString",
"children": [
{
"kind": "TypeNominal",
@@ -34763,8 +33052,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO12assetsStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO12assetsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34788,8 +33077,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08accountsD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO12assetsStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO12assetsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34802,8 +33091,8 @@
},
{
"kind": "Var",
- "name": "additionLimitString",
- "printedName": "additionLimitString",
+ "name": "authString",
+ "printedName": "authString",
"children": [
{
"kind": "TypeNominal",
@@ -34813,8 +33102,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO10authStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO10authStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34838,8 +33127,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08additionD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08additionD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO10authStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO10authStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34852,8 +33141,8 @@
},
{
"kind": "Var",
- "name": "authLimitString",
- "printedName": "authLimitString",
+ "name": "depositSwitchString",
+ "printedName": "depositSwitchString",
"children": [
{
"kind": "TypeNominal",
@@ -34863,8 +33152,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04authD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO19depositSwitchStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO19depositSwitchStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34888,8 +33177,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04authD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04authD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO19depositSwitchStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO19depositSwitchStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34902,8 +33191,8 @@
},
{
"kind": "Var",
- "name": "identityLimitString",
- "printedName": "identityLimitString",
+ "name": "identityString",
+ "printedName": "identityString",
"children": [
{
"kind": "TypeNominal",
@@ -34913,8 +33202,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO14identityStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO14identityStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34938,8 +33227,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO08identityD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO08identityD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO14identityStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO14identityStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -34952,8 +33241,8 @@
},
{
"kind": "Var",
- "name": "incomeLimitString",
- "printedName": "incomeLimitString",
+ "name": "incomeString",
+ "printedName": "incomeString",
"children": [
{
"kind": "TypeNominal",
@@ -34963,8 +33252,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO12incomeStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO12incomeStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -34988,8 +33277,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO06incomeD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO12incomeStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO12incomeStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -35002,8 +33291,8 @@
},
{
"kind": "Var",
- "name": "itemGetLimitString",
- "printedName": "itemGetLimitString",
+ "name": "investmentsString",
+ "printedName": "investmentsString",
"children": [
{
"kind": "TypeNominal",
@@ -35013,8 +33302,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO17investmentsStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO17investmentsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -35038,8 +33327,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO07itemGetD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO17investmentsStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO17investmentsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -35052,8 +33341,8 @@
},
{
"kind": "Var",
- "name": "rateLimitString",
- "printedName": "rateLimitString",
+ "name": "liabilitiesString",
+ "printedName": "liabilitiesString",
"children": [
{
"kind": "TypeNominal",
@@ -35063,8 +33352,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO17liabilitiesStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO17liabilitiesStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -35088,8 +33377,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO04rateD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO04rateD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO17liabilitiesStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO17liabilitiesStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -35102,8 +33391,8 @@
},
{
"kind": "Var",
- "name": "transactionsLimitString",
- "printedName": "transactionsLimitString",
+ "name": "liabilitiesReportString",
+ "printedName": "liabilitiesReportString",
"children": [
{
"kind": "TypeNominal",
@@ -35113,8 +33402,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvpZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO23liabilitiesReportStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO23liabilitiesReportStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -35138,8 +33427,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvgZ",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO012transactionsD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO23liabilitiesReportStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO23liabilitiesReportStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -35152,257 +33441,8 @@
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKRateLimitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKRateLimitErrorCode",
- "printedName": "LinkKit.PLKRateLimitErrorCode",
- "usr": "c:@E@PLKRateLimitErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvp",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKRateLimitErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKRateLimitErrorCode",
- "printedName": "LinkKit.PLKRateLimitErrorCode",
- "usr": "c:@E@PLKRateLimitErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvg",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO6toObjCSo07PLKRatedeF0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit18RateLimitErrorCodeO",
- "mangledName": "$s7LinkKit18RateLimitErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApiErrorCode",
- "printedName": "ApiErrorCode",
- "children": [
- {
- "kind": "Var",
- "name": "internalServerError",
- "printedName": "internalServerError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ApiErrorCode.Type) -> LinkKit.ApiErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ApiErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD0yA2CmF",
- "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD0yA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "plannedMaintenance",
- "printedName": "plannedMaintenance",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ApiErrorCode.Type) -> LinkKit.ApiErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ApiErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit12ApiErrorCodeO18plannedMaintenanceyA2CmF",
- "mangledName": "$s7LinkKit12ApiErrorCodeO18plannedMaintenanceyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ApiErrorCode.Type) -> (Swift.String) -> LinkKit.ApiErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ApiErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ApiErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit12ApiErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit12ApiErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApiErrorCode",
- "printedName": "LinkKit.ApiErrorCode",
- "usr": "s:7LinkKit12ApiErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit12ApiErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit12ApiErrorCodeO6stringACSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "paymentInitiationString",
+ "printedName": "paymentInitiationString",
"children": [
{
"kind": "TypeNominal",
@@ -35412,12 +33452,17 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ApiErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit12ApiErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit7ProductO23paymentInitiationStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO23paymentInitiationStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
"AccessControl"
],
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -35432,17 +33477,22 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ApiErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit12ApiErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit7ProductO23paymentInitiationStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO23paymentInitiationStringSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "internalServerErrorString",
- "printedName": "internalServerErrorString",
+ "name": "transactionsString",
+ "printedName": "transactionsString",
"children": [
{
"kind": "TypeNominal",
@@ -35452,8 +33502,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD6StringSSvpZ",
- "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD6StringSSvpZ",
+ "usr": "s:7LinkKit7ProductO18transactionsStringSSvpZ",
+ "mangledName": "$s7LinkKit7ProductO18transactionsStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
@@ -35477,8 +33527,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ApiErrorCodeO014internalServerD6StringSSvgZ",
- "mangledName": "$s7LinkKit12ApiErrorCodeO014internalServerD6StringSSvgZ",
+ "usr": "s:7LinkKit7ProductO18transactionsStringSSvgZ",
+ "mangledName": "$s7LinkKit7ProductO18transactionsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -35490,29 +33540,54 @@
]
},
{
- "kind": "Var",
- "name": "plannedMaintenanceString",
- "printedName": "plannedMaintenanceString",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvpZ",
- "mangledName": "$s7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7ProductO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit7ProductO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
"static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "hashValue",
+ "printedName": "hashValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
],
- "isLet": true,
- "hasStorage": true,
+ "declKind": "Var",
+ "usr": "s:7LinkKit7ProductO9hashValueSivp",
+ "mangledName": "$s7LinkKit7ProductO9hashValueSivp",
+ "moduleName": "LinkKit",
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -35521,49 +33596,71 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvgZ",
- "mangledName": "$s7LinkKit12ApiErrorCodeO24plannedMaintenanceStringSSvgZ",
+ "usr": "s:7LinkKit7ProductO9hashValueSivg",
+ "mangledName": "$s7LinkKit7ProductO9hashValueSivg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
+ {
+ "kind": "Function",
+ "name": "hash",
+ "printedName": "hash(into:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Hasher",
+ "printedName": "Swift.Hasher",
+ "paramValueOwnership": "InOut",
+ "usr": "s:s6HasherV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit7ProductO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s7LinkKit7ProductO4hash4intoys6HasherVz_tF",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
+ },
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "allCases",
+ "printedName": "allCases",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKApiErrorCode?",
+ "name": "Array",
+ "printedName": "[LinkKit.Product]",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKApiErrorCode",
- "printedName": "LinkKit.PLKApiErrorCode",
- "usr": "c:@E@PLKApiErrorCode"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
],
- "usr": "s:Sq"
+ "usr": "s:Sa"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvp",
- "mangledName": "$s7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvp",
+ "usr": "s:7LinkKit7ProductO8allCasesSayACGvpZ",
+ "mangledName": "$s7LinkKit7ProductO8allCasesSayACGvpZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -35572,43 +33669,52 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKApiErrorCode?",
+ "name": "Array",
+ "printedName": "[LinkKit.Product]",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKApiErrorCode",
- "printedName": "LinkKit.PLKApiErrorCode",
- "usr": "c:@E@PLKApiErrorCode"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
],
- "usr": "s:Sq"
+ "usr": "s:Sa"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvg",
- "mangledName": "$s7LinkKit12ApiErrorCodeO6toObjCSo06PLKApidE0VSgvg",
+ "usr": "s:7LinkKit7ProductO8allCasesSayACGvgZ",
+ "mangledName": "$s7LinkKit7ProductO8allCasesSayACGvgZ",
"moduleName": "LinkKit",
- "isFromExtension": true,
+ "static": true,
+ "implicit": true,
"accessorKind": "get"
}
]
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit12ApiErrorCodeO",
- "mangledName": "$s7LinkKit12ApiErrorCodeO",
+ "usr": "s:7LinkKit7ProductO",
+ "mangledName": "$s7LinkKit7ProductO",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
},
{
"kind": "Conformance",
@@ -35619,918 +33725,972 @@
},
{
"kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ItemErrorCode",
- "printedName": "ItemErrorCode",
- "children": [
- {
- "kind": "Var",
- "name": "insufficientCredentials",
- "printedName": "insufficientCredentials",
+ "name": "CaseIterable",
+ "printedName": "CaseIterable",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeWitness",
+ "name": "AllCases",
+ "printedName": "AllCases",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "name": "Array",
+ "printedName": "[LinkKit.Product]",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Product",
+ "printedName": "LinkKit.Product",
+ "usr": "s:7LinkKit7ProductO"
}
- ]
+ ],
+ "usr": "s:Sa"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO23insufficientCredentialsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23insufficientCredentialsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "invalidCredentials",
- "printedName": "invalidCredentials",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "usr": "s:s12CaseIterableP",
+ "mangledName": "$ss12CaseIterableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LoadingPaneViewController",
+ "printedName": "LoadingPaneViewController",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(with:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LoadingPaneViewController",
+ "printedName": "LinkKit.LoadingPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LoadingViewModel",
+ "printedName": "Workflow.LoadingViewModel",
+ "usr": "s:8Workflow16LoadingViewModelC"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO18invalidCredentialsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO18invalidCredentialsyA2CmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit25LoadingPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
+ "Custom",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "invalidMfa",
- "printedName": "invalidMfa",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.LoadingPaneViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "LoadingPaneViewController",
+ "printedName": "LinkKit.LoadingPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
}
- ]
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO10invalidMfayA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO10invalidMfayA2CmF",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
"declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "invalidSendMethod",
- "printedName": "invalidSendMethod",
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO17invalidSendMethodyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO17invalidSendMethodyA2CmF",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC11viewDidLoadyyF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
"declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "invalidUpdatedUsername",
- "printedName": "invalidUpdatedUsername",
+ "kind": "Function",
+ "name": "viewWillAppear",
+ "printedName": "viewWillAppear(_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO22invalidUpdatedUsernameyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO22invalidUpdatedUsernameyA2CmF",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewWillAppear:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC14viewWillAppearyySbF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewWillAppear:",
"declAttributes": [
- "RawDocComment"
- ]
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "itemLocked",
- "printedName": "itemLocked",
+ "kind": "Function",
+ "name": "viewDidAppear",
+ "printedName": "viewDidAppear(_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO10itemLockedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO10itemLockedyA2CmF",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidAppear:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC13viewDidAppearyySbF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidAppear:",
"declAttributes": [
- "RawDocComment"
- ]
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "itemLoginRequired",
- "printedName": "itemLoginRequired",
+ "kind": "Function",
+ "name": "viewDidDisappear",
+ "printedName": "viewDidDisappear(_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO17itemLoginRequiredyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO17itemLoginRequiredyA2CmF",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidDisappear:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC16viewDidDisappearyySbF",
"moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidDisappear:",
"declAttributes": [
- "RawDocComment"
- ]
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "itemNoError",
- "printedName": "itemNoError",
+ "name": "activityIndicatorView",
+ "printedName": "activityIndicatorView",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "PlaidActivityIndicator",
+ "printedName": "Threads.PlaidActivityIndicator",
+ "usr": "c:@M@Threads@objc(cs)PlaidActivityIndicator"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD0yA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD0yA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit25LoadingPaneViewControllerC017activityIndicatorE033_02203F4AD901BE57F27AD614C29CA913LL7Threads013PlaidActivityH0Cvp",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC017activityIndicatorE033_02203F4AD901BE57F27AD614C29CA913LL7Threads013PlaidActivityH0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "itemNotSupported",
- "printedName": "itemNotSupported",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "LoadingViewModel",
+ "printedName": "Workflow.LoadingViewModel",
+ "usr": "s:8Workflow16LoadingViewModelC"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO16itemNotSupportedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16itemNotSupportedyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit25LoadingPaneViewControllerC9viewModel33_02203F4AD901BE57F27AD614C29CA913LL8Workflow0ceH0Cvp",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC9viewModel33_02203F4AD901BE57F27AD614C29CA913LL8Workflow0ceH0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "RawDocComment"
- ]
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "incorrectDepositAmounts",
- "printedName": "incorrectDepositAmounts",
+ "name": "timer",
+ "printedName": "timer",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Timer?",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "Timer",
+ "printedName": "Foundation.Timer",
+ "usr": "c:objc(cs)NSTimer"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO23incorrectDepositAmountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23incorrectDepositAmountsyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit25LoadingPaneViewControllerC5timer33_02203F4AD901BE57F27AD614C29CA913LLSo7NSTimerCSgvp",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC5timer33_02203F4AD901BE57F27AD614C29CA913LLSo7NSTimerCSgvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "RawDocComment"
- ]
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 2,
+ "hasStorage": true
},
{
- "kind": "Var",
- "name": "userSetupRequired",
- "printedName": "userSetupRequired",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "TypeNominal",
+ "name": "LoadingPaneViewController",
+ "printedName": "LinkKit.LoadingPaneViewController",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO17userSetupRequiredyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO17userSetupRequiredyA2CmF",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "RawDocComment"
- ]
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController",
+ "mangledName": "$s7LinkKit25LoadingPaneViewControllerC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "AccessControl",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkTokenConfiguration",
+ "children": [
{
"kind": "Var",
- "name": "mfaNotSupported",
- "printedName": "mfaNotSupported",
+ "name": "token",
+ "printedName": "token",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO15mfaNotSupportedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO15mfaNotSupportedyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A18TokenConfigurationV5tokenSSvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV5tokenSSvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV5tokenSSvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV5tokenSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
]
},
{
"kind": "Var",
- "name": "noAccounts",
- "printedName": "noAccounts",
+ "name": "onSuccess",
+ "printedName": "onSuccess",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "printedName": "(LinkKit.LinkSuccess) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO10noAccountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO10noAccountsyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "noAuthAccounts",
- "printedName": "noAuthAccounts",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkSuccess) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO14noAuthAccountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO14noAuthAccountsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "noInvestmentAccounts",
- "printedName": "noInvestmentAccounts",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkSuccess) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
}
]
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvs",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0Vcvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0VcvM",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV9onSuccessyyAA0aF0VcvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO20noInvestmentAccountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO20noInvestmentAccountsyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "noLiabilityAccounts",
- "printedName": "noLiabilityAccounts",
+ "name": "onExit",
+ "printedName": "onExit",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "printedName": "(LinkKit.LinkExit) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO19noLiabilityAccountsyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO19noLiabilityAccountsyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "productNotReady",
- "printedName": "productNotReady",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkExit) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO15productNotReadyyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO15productNotReadyyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "productsNotSupported",
- "printedName": "productsNotSupported",
- "children": [
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkExit) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkExit",
+ "printedName": "LinkKit.LinkExit",
+ "usr": "s:7LinkKit0A4ExitV"
}
]
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvs",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0Vcvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV6onExityyAA0aF0VcvM",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV6onExityyAA0aF0VcvM",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "_modify"
}
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO20productsNotSupportedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO20productsNotSupportedyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
]
},
{
"kind": "Var",
- "name": "instantMatchFailed",
- "printedName": "instantMatchFailed",
+ "name": "onEvent",
+ "printedName": "onEvent",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> LinkKit.ItemErrorCode",
+ "printedName": "(LinkKit.LinkEvent) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
- }
- ]
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO18instantMatchFailedyA2CmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO18instantMatchFailedyA2CmF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvp",
"moduleName": "LinkKit",
"declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
"RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
+ ],
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ItemErrorCode.Type) -> (Swift.String) -> LinkKit.ItemErrorCode",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ItemErrorCode",
+ "printedName": "(LinkKit.LinkEvent) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
}
]
- },
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ItemErrorCode.Type",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkEvent) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkEvent",
+ "printedName": "LinkKit.LinkEvent",
+ "usr": "s:7LinkKit0A5EventV"
}
]
}
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13ItemErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit13ItemErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ItemErrorCode",
- "printedName": "LinkKit.ItemErrorCode",
- "usr": "s:7LinkKit13ItemErrorCodeO"
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvs",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0Vcvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "set"
},
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13ItemErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit13ItemErrorCodeO6stringACSS_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit13ItemErrorCodeO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit13ItemErrorCodeO11descriptionSSvg",
+ "usr": "s:7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0VcvM",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV7onEventyyAA0aF0VcvM",
"moduleName": "LinkKit",
- "accessorKind": "get"
+ "implicit": true,
+ "accessorKind": "_modify"
}
]
},
{
"kind": "Var",
- "name": "insufficientCredentialsString",
- "printedName": "insufficientCredentialsString",
+ "name": "noLoadingState",
+ "printedName": "noLoadingState",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvpZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -36540,198 +34700,128 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO29insufficientCredentialsStringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidCredentialsString",
- "printedName": "invalidCredentialsString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ },
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Set",
+ "printedName": "Set()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO24invalidCredentialsStringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvs",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvs",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidMfaString",
- "printedName": "invalidMfaString",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO16invalidMfaStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16invalidMfaStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "accessorKind": "set"
+ },
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO16invalidMfaStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16invalidMfaStringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV14noLoadingStateSbvM",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV14noLoadingStateSbvM",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "accessorKind": "_modify"
}
]
},
{
- "kind": "Var",
- "name": "invalidSendMethodString",
- "printedName": "invalidSendMethodString",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(token:onSuccess:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.LinkSuccess) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkSuccess",
+ "printedName": "LinkKit.LinkSuccess",
+ "usr": "s:7LinkKit0A7SuccessV"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23invalidSendMethodStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A18TokenConfigurationV5token9onSuccessACSS_yAA0aG0Vctcfc",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV5token9onSuccessACSS_yAA0aG0Vctcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "invalidUpdatedUsernameString",
- "printedName": "invalidUpdatedUsernameString",
+ "name": "isLinkUIPresentationImmediate",
+ "printedName": "isLinkUIPresentationImmediate",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvpZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV02isA23UIPresentationImmediateSbvp",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV02isA23UIPresentationImmediateSbvp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -36740,278 +34830,453 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO28invalidUpdatedUsernameStringSSvgZ",
+ "usr": "s:7LinkKit0A18TokenConfigurationV02isA23UIPresentationImmediateSbvg",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV02isA23UIPresentationImmediateSbvg",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
+ "isFromExtension": true,
"accessorKind": "get"
}
]
},
{
- "kind": "Var",
- "name": "itemLockedString",
- "printedName": "itemLockedString",
+ "kind": "Function",
+ "name": "environment",
+ "printedName": "environment(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO16itemLockedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16itemLockedStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Optional",
+ "printedName": "LinkKit.Environment?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO16itemLockedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16itemLockedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "itemLoginRequiredString",
- "printedName": "itemLoginRequiredString",
- "children": [
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvpZ",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A18TokenConfigurationV11environmentyAA11EnvironmentOSg3LogAHVF",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV11environmentyAA11EnvironmentOSg3LogAHVF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23itemLoginRequiredStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "itemNoErrorString",
- "printedName": "itemNoErrorString",
+ "kind": "Function",
+ "name": "loadSessionConfiguration",
+ "printedName": "loadSessionConfiguration(_:_:_:_:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "OneOf_Configuration",
+ "printedName": "WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration",
+ "usr": "s:13WorkflowProto09Link_Api_cA12StartRequestV19OneOf_ConfigurationO"
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD6StringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD6StringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A18TokenConfigurationV011loadSessionD0yySS_SS3LogAEVy13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_D0OctF",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV011loadSessionD0yySS_SS3LogAEVy13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_D0OctF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit0A18TokenConfigurationV",
+ "mangledName": "$s7LinkKit0A18TokenConfigurationV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AuthenticationServices",
+ "printedName": "AuthenticationServices",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "WorkflowProto",
+ "printedName": "WorkflowProto",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "os",
+ "printedName": "os",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "LinkHandler",
+ "printedName": "LinkHandler",
+ "children": [
+ {
+ "kind": "TypeDecl",
+ "name": "Dependencies",
+ "printedName": "Dependencies",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "Var",
+ "name": "keyValueStoreServiceFactory",
+ "printedName": "keyValueStoreServiceFactory",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "() -> LinkKit.KeyValueStoreService",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreService",
+ "printedName": "LinkKit.KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ]
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvp",
+ "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasStorage"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "() -> LinkKit.KeyValueStoreService",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreService",
+ "printedName": "LinkKit.KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ]
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvg",
+ "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(keyValueStoreServiceFactory:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Dependencies",
+ "printedName": "LinkKit.LinkHandler.Dependencies",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "() -> LinkKit.KeyValueStoreService",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreService",
+ "printedName": "LinkKit.KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "hasDefaultArg": true
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO06itemNoD6StringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO06itemNoD6StringSSvgZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAeA03KeyfgH0_pyc_tcfc",
+ "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAeA03KeyfgH0_pyc_tcfc",
"moduleName": "LinkKit",
- "static": true,
- "implicit": true,
"declAttributes": [
- "Transparent"
+ "AccessControl"
],
- "accessorKind": "get"
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV",
+ "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
{
- "kind": "Var",
- "name": "itemNotSupportedString",
- "printedName": "itemNotSupportedString",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(configuration:environment:dependencies:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkHandler",
+ "printedName": "LinkKit.LinkHandler",
+ "usr": "s:7LinkKit0A7HandlerC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Dependencies",
+ "printedName": "LinkKit.LinkHandler.Dependencies",
+ "hasDefaultArg": true,
+ "usr": "s:7LinkKit0A7HandlerC12DependenciesV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvpZ",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit0A7HandlerC13configuration11environment12dependenciesAcA0A18TokenConfigurationV_AA11EnvironmentOAC12DependenciesVtcfc",
+ "mangledName": "$s7LinkKit0A7HandlerC13configuration11environment12dependenciesAcA0A18TokenConfigurationV_AA11EnvironmentOAC12DependenciesVtcfc",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(presentUsing:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO22itemNotSupportedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7HandlerC4open12presentUsingyAA18PresentationMethodO_tF",
+ "mangledName": "$s7LinkKit0A7HandlerC4open12presentUsingyAA18PresentationMethodO_tF",
+ "moduleName": "LinkKit",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "incorrectDepositAmountsString",
- "printedName": "incorrectDepositAmountsString",
+ "kind": "Function",
+ "name": "resumeAfterTermination",
+ "printedName": "resumeAfterTermination(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvpZ",
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7HandlerC22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "mangledName": "$s7LinkKit0A7HandlerC22resumeAfterTermination4fromy10Foundation3URLV_tF",
"moduleName": "LinkKit",
- "static": true,
+ "isOpen": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "createEmbeddedView",
+ "printedName": "createEmbeddedView(presentUsing:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO29incorrectDepositAmountsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit0A7HandlerC18createEmbeddedView12presentUsingSo6UIViewCAA18PresentationMethodO_tF",
+ "mangledName": "$s7LinkKit0A7HandlerC18createEmbeddedView12presentUsingSo6UIViewCAA18PresentationMethodO_tF",
+ "moduleName": "LinkKit",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "userSetupRequiredString",
- "printedName": "userSetupRequiredString",
+ "name": "linkOpenID",
+ "printedName": "linkOpenID",
"children": [
{
"kind": "TypeNominal",
@@ -37021,16 +35286,18 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC10linkOpenIDSSvp",
+ "mangledName": "$s7LinkKit0A7HandlerC10linkOpenIDSSvp",
"moduleName": "LinkKit",
- "static": true,
+ "isOpen": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
+ "fixedbinaryorder": 0,
"hasStorage": true,
"accessors": [
{
@@ -37046,11 +35313,11 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO23userSetupRequiredStringSSvgZ",
+ "usr": "s:7LinkKit0A7HandlerC10linkOpenIDSSvg",
+ "mangledName": "$s7LinkKit0A7HandlerC10linkOpenIDSSvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
+ "isOpen": true,
"declAttributes": [
"Transparent"
],
@@ -37060,27 +35327,48 @@
},
{
"kind": "Var",
- "name": "mfaNotSupportedString",
- "printedName": "mfaNotSupportedString",
+ "name": "onSessionCreated",
+ "printedName": "onSessionCreated",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
+ "name": "Optional",
+ "printedName": "((Workflow.Session) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Workflow.Session) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Session",
+ "printedName": "Workflow.Session",
+ "usr": "s:8Workflow7SessionC"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvp",
"moduleName": "LinkKit",
- "static": true,
+ "isOpen": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
+ "fixedbinaryorder": 1,
"hasStorage": true,
"accessors": [
{
@@ -37090,78 +35378,118 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "((Workflow.Session) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Workflow.Session) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Session",
+ "printedName": "Workflow.Session",
+ "usr": "s:8Workflow7SessionC"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO21mfaNotSupportedStringSSvgZ",
+ "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvg",
+ "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
+ "isOpen": true,
"declAttributes": [
"Transparent"
],
"accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "noAccountsString",
- "printedName": "noAccountsString",
- "children": [
+ },
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO16noAccountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16noAccountsStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((Workflow.Session) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Workflow.Session) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Session",
+ "printedName": "Workflow.Session",
+ "usr": "s:8Workflow7SessionC"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvs",
+ "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvs",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "isOpen": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "set"
+ },
{
"kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "name": "Modify",
+ "printedName": "Modify()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO16noAccountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO16noAccountsStringSSvgZ",
+ "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvM",
+ "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvM",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
+ "isOpen": true,
"declAttributes": [
"Transparent"
],
- "accessorKind": "get"
+ "accessorKind": "_modify"
}
]
},
{
"kind": "Var",
- "name": "noAuthAccountsString",
- "printedName": "noAuthAccountsString",
+ "name": "linkPersistentID",
+ "printedName": "linkPersistentID",
"children": [
{
"kind": "TypeNominal",
@@ -37171,15 +35499,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC16linkPersistentIDSSvp",
+ "mangledName": "$s7LinkKit0A7HandlerC16linkPersistentIDSSvp",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 2,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -37196,13 +35524,13 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO20noAuthAccountsStringSSvgZ",
+ "usr": "s:7LinkKit0A7HandlerC16linkPersistentIDSSvg",
+ "mangledName": "$s7LinkKit0A7HandlerC16linkPersistentIDSSvg",
"moduleName": "LinkKit",
- "static": true,
"implicit": true,
"declAttributes": [
- "Transparent"
+ "Transparent",
+ "Final"
],
"accessorKind": "get"
}
@@ -37210,761 +35538,433 @@
},
{
"kind": "Var",
- "name": "noInvestmentAccountsString",
- "printedName": "noInvestmentAccountsString",
+ "name": "openCallTimestamp",
+ "printedName": "openCallTimestamp",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Swift.Double?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC17openCallTimestamp33_2F35CE8D0F063DC4E7A32246BB6D8185LLSdSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC17openCallTimestamp33_2F35CE8D0F063DC4E7A32246BB6D8185LLSdSgvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO26noInvestmentAccountsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "fixedbinaryorder": 3,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "noLiabilityAccountsString",
- "printedName": "noLiabilityAccountsString",
+ "name": "state",
+ "printedName": "state",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "State",
+ "printedName": "LinkKit.LinkHandler.State",
+ "usr": "s:7LinkKit0A7HandlerC5State33_2F35CE8D0F063DC4E7A32246BB6D8185LLO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC5state33_2F35CE8D0F063DC4E7A32246BB6D8185LLAC5StateAELLOvp",
+ "mangledName": "$s7LinkKit0A7HandlerC5state33_2F35CE8D0F063DC4E7A32246BB6D8185LLAC5StateAELLOvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 4,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "pendingRedirectUri",
+ "printedName": "pendingRedirectUri",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO25noLiabilityAccountsStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC18pendingRedirectUri33_2F35CE8D0F063DC4E7A32246BB6D8185LL10Foundation3URLVSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC18pendingRedirectUri33_2F35CE8D0F063DC4E7A32246BB6D8185LL10Foundation3URLVSgvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 5,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "productNotReadyString",
- "printedName": "productNotReadyString",
+ "name": "configuration",
+ "printedName": "configuration",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO21productNotReadyStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO21productNotReadyStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC13configuration33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0A18TokenConfigurationVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC13configuration33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0A18TokenConfigurationVvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 6,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO21productNotReadyStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO21productNotReadyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "productsNotSupportedString",
- "printedName": "productsNotSupportedString",
+ "name": "environment",
+ "printedName": "environment",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Environment",
+ "printedName": "LinkKit.Environment",
+ "usr": "s:7LinkKit11EnvironmentO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC11environment33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA11EnvironmentOvp",
+ "mangledName": "$s7LinkKit0A7HandlerC11environment33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA11EnvironmentOvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 7,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO26productsNotSupportedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "instantMatchFailedString",
- "printedName": "instantMatchFailedString",
+ "name": "log",
+ "printedName": "log",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvpZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC3log33_2F35CE8D0F063DC4E7A32246BB6D8185LL3LogAFVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC3log33_2F35CE8D0F063DC4E7A32246BB6D8185LL3LogAFVvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 8,
"isLet": true,
- "hasStorage": true,
- "accessors": [
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "keyValueService",
+ "printedName": "keyValueService",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvgZ",
- "mangledName": "$s7LinkKit13ItemErrorCodeO24instantMatchFailedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreService",
+ "printedName": "LinkKit.KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC15keyValueService33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA03Keye5StoreF0_pvp",
+ "mangledName": "$s7LinkKit0A7HandlerC15keyValueService33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA03Keye5StoreF0_pvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 9,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "session",
+ "printedName": "session",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.PLKItemErrorCode?",
+ "printedName": "Workflow.Session?",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKItemErrorCode",
- "printedName": "LinkKit.PLKItemErrorCode",
- "usr": "c:@E@PLKItemErrorCode"
+ "name": "Session",
+ "printedName": "Workflow.Session",
+ "usr": "s:8Workflow7SessionC"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvp",
- "mangledName": "$s7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvp",
+ "usr": "s:7LinkKit0A7HandlerC7session33_2F35CE8D0F063DC4E7A32246BB6D8185LL8Workflow7SessionCSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC7session33_2F35CE8D0F063DC4E7A32246BB6D8185LL8Workflow7SessionCSgvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKItemErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKItemErrorCode",
- "printedName": "LinkKit.PLKItemErrorCode",
- "usr": "c:@E@PLKItemErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvg",
- "mangledName": "$s7LinkKit13ItemErrorCodeO6toObjCSo07PLKItemdE0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit13ItemErrorCodeO",
- "mangledName": "$s7LinkKit13ItemErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "AuthErrorCode",
- "printedName": "AuthErrorCode",
- "children": [
- {
- "kind": "Var",
- "name": "productNotReady",
- "printedName": "productNotReady",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.AuthErrorCode.Type) -> LinkKit.AuthErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.AuthErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13AuthErrorCodeO15productNotReadyyA2CmF",
- "mangledName": "$s7LinkKit13AuthErrorCodeO15productNotReadyyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "verificationExpired",
- "printedName": "verificationExpired",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.AuthErrorCode.Type) -> LinkKit.AuthErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.AuthErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13AuthErrorCodeO19verificationExpiredyA2CmF",
- "mangledName": "$s7LinkKit13AuthErrorCodeO19verificationExpiredyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.AuthErrorCode.Type) -> (Swift.String) -> LinkKit.AuthErrorCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.AuthErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.AuthErrorCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13AuthErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit13AuthErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AuthErrorCode",
- "printedName": "LinkKit.AuthErrorCode",
- "usr": "s:7LinkKit13AuthErrorCodeO"
- },
+ "isInternal": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 10,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "sdkInfo",
+ "printedName": "sdkInfo",
+ "children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "SDKInfoProvider",
+ "printedName": "LinkKit.SDKInfoProvider",
+ "usr": "s:7LinkKit15SDKInfoProviderV"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13AuthErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit13AuthErrorCodeO6stringACSS_tcfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit0A7HandlerC7sdkInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA15SDKInfoProviderVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC7sdkInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA15SDKInfoProviderVvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
"AccessControl"
],
- "init_kind": "Designated"
+ "fixedbinaryorder": 11,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "deviceInfo",
+ "printedName": "deviceInfo",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "DeviceInfoProvider",
+ "printedName": "LinkKit.DeviceInfoProvider",
+ "usr": "s:7LinkKit18DeviceInfoProviderV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13AuthErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit13AuthErrorCodeO11descriptionSSvp",
+ "usr": "s:7LinkKit0A7HandlerC10deviceInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06DeviceE8ProviderVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC10deviceInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06DeviceE8ProviderVvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
"AccessControl"
],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13AuthErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit13AuthErrorCodeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
+ "fixedbinaryorder": 12,
+ "isLet": true,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "productNotReadyString",
- "printedName": "productNotReadyString",
+ "name": "localeInfo",
+ "printedName": "localeInfo",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LocaleInfoProvider",
+ "printedName": "LinkKit.LocaleInfoProvider",
+ "usr": "s:7LinkKit18LocaleInfoProviderV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13AuthErrorCodeO21productNotReadyStringSSvpZ",
- "mangledName": "$s7LinkKit13AuthErrorCodeO21productNotReadyStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC10localeInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06LocaleE8ProviderVvp",
+ "mangledName": "$s7LinkKit0A7HandlerC10localeInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06LocaleE8ProviderVvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 13,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13AuthErrorCodeO21productNotReadyStringSSvgZ",
- "mangledName": "$s7LinkKit13AuthErrorCodeO21productNotReadyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "verificationExpiredString",
- "printedName": "verificationExpiredString",
+ "name": "userAgentProvider",
+ "printedName": "userAgentProvider",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "LinkHTTPServiceUserAgentProvider",
+ "printedName": "LinkKit.LinkHTTPServiceUserAgentProvider",
+ "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvpZ",
- "mangledName": "$s7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvpZ",
+ "usr": "s:7LinkKit0A7HandlerC17userAgentProvider33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0a15HTTPServiceUsereF0Cvp",
+ "mangledName": "$s7LinkKit0A7HandlerC17userAgentProvider33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0a15HTTPServiceUsereF0Cvp",
"moduleName": "LinkKit",
- "static": true,
+ "isInternal": true,
"declAttributes": [
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
+ "fixedbinaryorder": 14,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvgZ",
- "mangledName": "$s7LinkKit13AuthErrorCodeO25verificationExpiredStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "paneViewModelObserver",
+ "printedName": "paneViewModelObserver",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.PLKAuthErrorCode?",
+ "printedName": "AppCore.Observer?",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAuthErrorCode",
- "printedName": "LinkKit.PLKAuthErrorCode",
- "usr": "c:@E@PLKAuthErrorCode"
+ "name": "Observer",
+ "printedName": "AppCore.Observer",
+ "usr": "s:7AppCore8ObserverC"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvp",
- "mangledName": "$s7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvp",
+ "usr": "s:7LinkKit0A7HandlerC21paneViewModelObserver33_2F35CE8D0F063DC4E7A32246BB6D8185LL7AppCore0G0CSgvp",
+ "mangledName": "$s7LinkKit0A7HandlerC21paneViewModelObserver33_2F35CE8D0F063DC4E7A32246BB6D8185LL7AppCore0G0CSgvp",
"moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKAuthErrorCode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKAuthErrorCode",
- "printedName": "LinkKit.PLKAuthErrorCode",
- "usr": "c:@E@PLKAuthErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvg",
- "mangledName": "$s7LinkKit13AuthErrorCodeO6toObjCSo07PLKAuthdE0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
+ "isInternal": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 15,
+ "hasStorage": true
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit13AuthErrorCodeO",
- "mangledName": "$s7LinkKit13AuthErrorCodeO",
+ "declKind": "Class",
+ "usr": "s:7LinkKit0A7HandlerC",
+ "mangledName": "$s7LinkKit0A7HandlerC",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "Handler",
+ "printedName": "Handler",
+ "usr": "s:7LinkKit7HandlerP",
+ "mangledName": "$s7LinkKit7HandlerP"
}
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "AssetReportErrorCode",
- "printedName": "AssetReportErrorCode",
+ "name": "ViewName",
+ "printedName": "ViewName",
"children": [
{
"kind": "Var",
- "name": "productNotEnabled",
- "printedName": "productNotEnabled",
+ "name": "acceptTOS",
+ "printedName": "acceptTOS",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -37972,8 +35972,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO17productNotEnabledyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO17productNotEnabledyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO9acceptTOSyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9acceptTOSyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -37981,30 +35981,30 @@
},
{
"kind": "Var",
- "name": "dataUnavailable",
- "printedName": "dataUnavailable",
+ "name": "connected",
+ "printedName": "connected",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38012,8 +36012,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO15dataUnavailableyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO15dataUnavailableyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO9connectedyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9connectedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38021,30 +36021,30 @@
},
{
"kind": "Var",
- "name": "productNotReady",
- "printedName": "productNotReady",
+ "name": "consent",
+ "printedName": "consent",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38052,8 +36052,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO15productNotReadyyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO15productNotReadyyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO7consentyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO7consentyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38061,30 +36061,30 @@
},
{
"kind": "Var",
- "name": "assetReportGenerationFailed",
- "printedName": "assetReportGenerationFailed",
+ "name": "credential",
+ "printedName": "credential",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38092,8 +36092,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD16GenerationFailedyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD16GenerationFailedyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO10credentialyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO10credentialyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38101,30 +36101,30 @@
},
{
"kind": "Var",
- "name": "invalidParent",
- "printedName": "invalidParent",
+ "name": "dataTransparency",
+ "printedName": "dataTransparency",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38132,8 +36132,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO13invalidParentyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO13invalidParentyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO16dataTransparencyyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO16dataTransparencyyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38141,30 +36141,30 @@
},
{
"kind": "Var",
- "name": "insightsNotEnabled",
- "printedName": "insightsNotEnabled",
+ "name": "dataTransparencyConsent",
+ "printedName": "dataTransparencyConsent",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38172,8 +36172,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO18insightsNotEnabledyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO18insightsNotEnabledyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO23dataTransparencyConsentyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO23dataTransparencyConsentyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38181,30 +36181,30 @@
},
{
"kind": "Var",
- "name": "insightsPreviouslyNotEnabled",
- "printedName": "insightsPreviouslyNotEnabled",
+ "name": "documentaryVerification",
+ "printedName": "documentaryVerification",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38212,8 +36212,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO28insightsPreviouslyNotEnabledyA2CmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO28insightsPreviouslyNotEnabledyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO23documentaryVerificationyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO23documentaryVerificationyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38221,43 +36221,30 @@
},
{
"kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "name": "error",
+ "printedName": "error",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.AssetReportErrorCode.Type) -> (Swift.String) -> LinkKit.AssetReportErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.AssetReportErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38265,545 +36252,516 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20AssetReportErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit8ViewNameO5erroryA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO5erroryA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
+ "kind": "Var",
+ "name": "exit",
+ "printedName": "exit",
"children": [
{
- "kind": "TypeNominal",
- "name": "AssetReportErrorCode",
- "printedName": "LinkKit.AssetReportErrorCode",
- "usr": "s:7LinkKit20AssetReportErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO6stringACSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO4exityA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO4exityA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "kycCheck",
+ "printedName": "kycCheck",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO8kycCheckyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO8kycCheckyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "productNotEnabledString",
- "printedName": "productNotEnabledString",
+ "name": "loading",
+ "printedName": "loading",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO7loadingyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO7loadingyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "dataUnavailableString",
- "printedName": "dataUnavailableString",
+ "name": "matchedConsent",
+ "printedName": "matchedConsent",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO14matchedConsentyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO14matchedConsentyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "matchedCredential",
+ "printedName": "matchedCredential",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO17matchedCredentialyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO17matchedCredentialyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "productNotReadyString",
- "printedName": "productNotReadyString",
+ "name": "matchedMFA",
+ "printedName": "matchedMFA",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO10matchedMFAyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO10matchedMFAyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mfa",
+ "printedName": "mfa",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO3mfayA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO3mfayA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "assetReportGenerationFailedString",
- "printedName": "assetReportGenerationFailedString",
+ "name": "numbers",
+ "printedName": "numbers",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO7numbersyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO7numbersyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "invalidParentString",
- "printedName": "invalidParentString",
+ "name": "numbersSelectInstitution",
+ "printedName": "numbersSelectInstitution",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO24numbersSelectInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO24numbersSelectInstitutionyA2CmF",
+ "moduleName": "LinkKit"
},
{
"kind": "Var",
- "name": "insightsNotEnabledString",
- "printedName": "insightsNotEnabledString",
+ "name": "oauth",
+ "printedName": "oauth",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO5oauthyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO5oauthyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "insightsPreviouslyNotEnabledString",
- "printedName": "insightsPreviouslyNotEnabledString",
+ "name": "recaptcha",
+ "printedName": "recaptcha",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvpZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvgZ",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO9recaptchayA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9recaptchayA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "riskCheck",
+ "printedName": "riskCheck",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKAssetReportErrorCode?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAssetReportErrorCode",
- "printedName": "LinkKit.PLKAssetReportErrorCode",
- "usr": "c:@E@PLKAssetReportErrorCode"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvp",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvp",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKAssetReportErrorCode?",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKAssetReportErrorCode",
- "printedName": "LinkKit.PLKAssetReportErrorCode",
- "usr": "c:@E@PLKAssetReportErrorCode"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvg",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO9riskCheckyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9riskCheckyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit20AssetReportErrorCodeO",
- "mangledName": "$s7LinkKit20AssetReportErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InstitutionErrorCode",
- "printedName": "InstitutionErrorCode",
- "children": [
{
"kind": "Var",
- "name": "institutionDown",
- "printedName": "institutionDown",
+ "name": "screening",
+ "printedName": "screening",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38811,8 +36769,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO15institutionDownyA2CmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO15institutionDownyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO9screeningyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9screeningyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38820,30 +36778,30 @@
},
{
"kind": "Var",
- "name": "institutionNotResponding",
- "printedName": "institutionNotResponding",
+ "name": "selectAccount",
+ "printedName": "selectAccount",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38851,8 +36809,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO24institutionNotRespondingyA2CmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO24institutionNotRespondingyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO13selectAccountyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO13selectAccountyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38860,30 +36818,30 @@
},
{
"kind": "Var",
- "name": "institutionNotAvailable",
- "printedName": "institutionNotAvailable",
+ "name": "selectAuthType",
+ "printedName": "selectAuthType",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38891,8 +36849,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO23institutionNotAvailableyA2CmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO23institutionNotAvailableyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO14selectAuthTypeyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO14selectAuthTypeyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38900,30 +36858,30 @@
},
{
"kind": "Var",
- "name": "institutionNoLongerSupported",
- "printedName": "institutionNoLongerSupported",
+ "name": "submitPhone",
+ "printedName": "submitPhone",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> LinkKit.InstitutionErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38931,8 +36889,8 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO28institutionNoLongerSupportedyA2CmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO28institutionNoLongerSupportedyA2CmF",
+ "usr": "s:7LinkKit8ViewNameO11submitPhoneyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO11submitPhoneyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
"RawDocComment"
@@ -38940,43 +36898,30 @@
},
{
"kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
+ "name": "verifyPhone",
+ "printedName": "verifyPhone",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.InstitutionErrorCode.Type) -> (Swift.String) -> LinkKit.InstitutionErrorCode",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.InstitutionErrorCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.InstitutionErrorCode.Type",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
]
}
@@ -38984,428 +36929,505 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit20InstitutionErrorCodeO7unknownyACSScACmF",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO7unknownyACSScACmF",
- "moduleName": "LinkKit"
+ "usr": "s:7LinkKit8ViewNameO11verifyPhoneyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO11verifyPhoneyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(string:)",
+ "kind": "Var",
+ "name": "selectSavedInstitution",
+ "printedName": "selectSavedInstitution",
"children": [
{
- "kind": "TypeNominal",
- "name": "InstitutionErrorCode",
- "printedName": "LinkKit.InstitutionErrorCode",
- "usr": "s:7LinkKit20InstitutionErrorCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO6stringACSS_tcfc",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO6stringACSS_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO22selectSavedInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO22selectSavedInstitutionyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "description",
- "printedName": "description",
+ "name": "selectSavedAccount",
+ "printedName": "selectSavedAccount",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO11descriptionSSvp",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO11descriptionSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO11descriptionSSvg",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO11descriptionSSvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO18selectSavedAccountyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO18selectSavedAccountyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "institutionDownString",
- "printedName": "institutionDownString",
+ "name": "selectBrand",
+ "printedName": "selectBrand",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvpZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvgZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO21institutionDownStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO11selectBrandyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO11selectBrandyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "institutionNotRespondingString",
- "printedName": "institutionNotRespondingString",
+ "name": "selectInstitution",
+ "printedName": "selectInstitution",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvpZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvgZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO30institutionNotRespondingStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO17selectInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO17selectInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "institutionNotAvailableString",
- "printedName": "institutionNotAvailableString",
+ "name": "selfieCheck",
+ "printedName": "selfieCheck",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvpZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO11selfieCheckyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO11selfieCheckyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "uploadDocuments",
+ "printedName": "uploadDocuments",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvgZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO29institutionNotAvailableStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO15uploadDocumentsyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO15uploadDocumentsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "institutionNoLongerSupportedString",
- "printedName": "institutionNoLongerSupportedString",
+ "name": "submitDocuments",
+ "printedName": "submitDocuments",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvpZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvpZ",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO15submitDocumentsyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO15submitDocumentsyA2CmF",
"moduleName": "LinkKit",
- "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "submitDocumentsSuccess",
+ "printedName": "submitDocumentsSuccess",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvgZ",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO34institutionNoLongerSupportedStringSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO22submitDocumentsSuccessyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO22submitDocumentsSuccessyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
"kind": "Var",
- "name": "toObjC",
- "printedName": "toObjC",
+ "name": "submitDocumentsError",
+ "printedName": "submitDocumentsError",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInstitutionErrorCode?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKInstitutionErrorCode",
- "printedName": "LinkKit.PLKInstitutionErrorCode",
- "usr": "c:@E@PLKInstitutionErrorCode"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvp",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO20submitDocumentsErroryA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO20submitDocumentsErroryA2CmF",
"moduleName": "LinkKit",
- "isFromExtension": true,
- "accessors": [
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "verifySMS",
+ "printedName": "verifySMS",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> LinkKit.ViewName",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKInstitutionErrorCode?",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "PLKInstitutionErrorCode",
- "printedName": "LinkKit.PLKInstitutionErrorCode",
- "usr": "c:@E@PLKInstitutionErrorCode"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvg",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO6toObjCSo014PLKInstitutiondE0VSgvg",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO9verifySMSyA2CmF",
+ "mangledName": "$s7LinkKit8ViewNameO9verifySMSyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit20InstitutionErrorCodeO",
- "mangledName": "$s7LinkKit20InstitutionErrorCodeO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
},
{
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ViewName.Type) -> (Swift.String) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.ViewName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ViewName.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit8ViewNameO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit8ViewNameO7unknownyACSScACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "GithubRelease",
- "printedName": "GithubRelease",
- "children": [
- {
- "kind": "Var",
- "name": "htmlURL",
- "printedName": "htmlURL",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV7htmlURLSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV7htmlURLSSvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit8ViewNameO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit8ViewNameO4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
+ "AccessControl"
],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV7htmlURLSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV7htmlURLSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "tagName",
- "printedName": "tagName",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
{
"kind": "TypeNominal",
"name": "String",
@@ -39413,45 +37435,19 @@
"usr": "s:SS"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV7tagNameSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV7tagNameSSvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit8ViewNameO8rawValueACSS_tcfc",
+ "mangledName": "$s7LinkKit8ViewNameO8rawValueACSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
+ "AccessControl"
],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV7tagNameSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV7tagNameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "name",
- "printedName": "name",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
@@ -39461,15 +37457,12 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV4nameSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV4nameSSvp",
+ "usr": "s:7LinkKit8ViewNameO11descriptionSSvp",
+ "mangledName": "$s7LinkKit8ViewNameO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
+ "AccessControl"
],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -39484,133 +37477,97 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV4nameSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV4nameSSvg",
+ "usr": "s:7LinkKit8ViewNameO11descriptionSSvg",
+ "mangledName": "$s7LinkKit8ViewNameO11descriptionSSvg",
"moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
- "kind": "Var",
- "name": "draft",
- "printedName": "draft",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV5draftSbvp",
- "mangledName": "$s7LinkKit13GithubReleaseV5draftSbvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit8ViewNameO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit8ViewNameO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
"declAttributes": [
- "HasStorage"
+ "AccessControl"
],
- "fixedbinaryorder": 3,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV5draftSbvg",
- "mangledName": "$s7LinkKit13GithubReleaseV5draftSbvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "prerelease",
- "printedName": "prerelease",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
"name": "Bool",
"printedName": "Swift.Bool",
"usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ViewName",
+ "printedName": "LinkKit.ViewName",
+ "usr": "s:7LinkKit8ViewNameO"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV10prereleaseSbvp",
- "mangledName": "$s7LinkKit13GithubReleaseV10prereleaseSbvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit8ViewNameO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit8ViewNameO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage"
- ],
- "fixedbinaryorder": 4,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV10prereleaseSbvg",
- "mangledName": "$s7LinkKit13GithubReleaseV10prereleaseSbvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "publishedAt",
- "printedName": "publishedAt",
+ "name": "toObjCValue",
+ "printedName": "toObjCValue",
"children": [
{
"kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKViewNameValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKViewNameValue",
+ "printedName": "LinkKit.PLKViewNameValue",
+ "usr": "c:@E@PLKViewNameValue"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvp",
- "mangledName": "$s7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvp",
+ "usr": "s:7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvp",
+ "mangledName": "$s7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage"
- ],
- "fixedbinaryorder": 5,
- "isLet": true,
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -39619,45 +37576,45 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKViewNameValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKViewNameValue",
+ "printedName": "LinkKit.PLKViewNameValue",
+ "usr": "c:@E@PLKViewNameValue"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvg",
- "mangledName": "$s7LinkKit13GithubReleaseV11publishedAt10Foundation4DateVvg",
+ "usr": "s:7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvg",
+ "mangledName": "$s7LinkKit8ViewNameO11toObjCValueSo07PLKViewD5ValueVSgvg",
"moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
+ "isFromExtension": true,
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "body",
- "printedName": "body",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKViewName",
+ "printedName": "LinkKit.PLKViewName",
+ "usr": "c:objc(cs)PLKViewName"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV4bodySSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV4bodySSvp",
+ "usr": "s:7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvp",
+ "mangledName": "$s7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvp",
"moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage"
- ],
- "fixedbinaryorder": 6,
- "isLet": true,
- "hasStorage": true,
+ "isFromExtension": true,
"accessors": [
{
"kind": "Accessor",
@@ -39666,384 +37623,165 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "PLKViewName",
+ "printedName": "LinkKit.PLKViewName",
+ "usr": "c:objc(cs)PLKViewName"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV4bodySSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV4bodySSvg",
+ "usr": "s:7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvg",
+ "mangledName": "$s7LinkKit8ViewNameO6toObjCSo07PLKViewD0Cvg",
"moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
+ "isFromExtension": true,
"accessorKind": "get"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit8ViewNameO",
+ "mangledName": "$s7LinkKit8ViewNameO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KeyValueStoreKey",
+ "printedName": "KeyValueStoreKey",
+ "children": [
{
"kind": "Var",
- "name": "semanticVersion",
- "printedName": "semanticVersion",
+ "name": "linkPersistentID",
+ "printedName": "linkPersistentID",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.SemanticVersion?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.KeyValueStoreKey.Type) -> LinkKit.KeyValueStoreKey",
"children": [
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvp",
- "mangledName": "$s7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvp",
- "moduleName": "LinkKit",
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
+ },
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.SemanticVersion?",
+ "name": "Metatype",
+ "printedName": "LinkKit.KeyValueStoreKey.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "SemanticVersion",
- "printedName": "LinkKit.SemanticVersion",
- "usr": "s:7LinkKit15SemanticVersionV"
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
- ],
- "usr": "s:Sq"
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvg",
- "mangledName": "$s7LinkKit13GithubReleaseV15semanticVersionAA08SemanticF0VSgvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit013KeyValueStoreC0O16linkPersistentIDyA2CmF",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O16linkPersistentIDyA2CmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
},
{
- "kind": "TypeDecl",
- "name": "CodingKeys",
- "printedName": "CodingKeys",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
- "kind": "Var",
- "name": "htmlURL",
- "printedName": "htmlURL",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO7htmlURLyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO7htmlURLyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "tagName",
- "printedName": "tagName",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO7tagNameyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO7tagNameyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "name",
- "printedName": "name",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO4nameyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO4nameyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "draft",
- "printedName": "draft",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO5draftyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO5draftyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 3
- },
- {
- "kind": "Var",
- "name": "prerelease",
- "printedName": "prerelease",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO10prereleaseyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO10prereleaseyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 4
- },
- {
- "kind": "Var",
- "name": "publishedAt",
- "printedName": "publishedAt",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.KeyValueStoreKey?",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11publishedAtyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11publishedAtyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 5
+ "usr": "s:Sq"
},
{
- "kind": "Var",
- "name": "body",
- "printedName": "body",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.GithubRelease.CodingKeys.Type) -> LinkKit.GithubRelease.CodingKeys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.GithubRelease.CodingKeys.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO4bodyyA2EmF",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO4bodyyA2EmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 6
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0ACSgSS_tcfc",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0ACSgSS_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "rawValue",
+ "printedName": "rawValue",
+ "children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.GithubRelease.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueAESgSS_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0SSvp",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0SSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
{
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -40052,37 +37790,50 @@
"usr": "s:SS"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvp",
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0SSvg",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0SSvg",
"moduleName": "LinkKit",
"implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8rawValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit013KeyValueStoreC0O",
+ "mangledName": "$s7LinkKit013KeyValueStoreC0O",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "enumRawTypeName": "String",
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
{
- "kind": "Var",
- "name": "stringValue",
- "printedName": "stringValue",
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
"children": [
{
"kind": "TypeNominal",
@@ -40090,53 +37841,36 @@
"printedName": "Swift.String",
"usr": "s:SS"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvp",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvg",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
]
- },
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KeyValueStoreService",
+ "printedName": "KeyValueStoreService",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "string",
+ "printedName": "string(for:)",
+ "children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringValue:)",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.GithubRelease.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -40144,197 +37878,34 @@
"usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO11stringValueAESgSS_tcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO11stringValueAESgSS_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "usr": "s:Sq"
},
{
- "kind": "Var",
- "name": "intValue",
- "printedName": "intValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvp",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvg",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueSiSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(intValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.GithubRelease.CodingKeys?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CodingKeys",
- "printedName": "LinkKit.GithubRelease.CodingKeys",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO8intValueAESgSi_tcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO8intValueAESgSi_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit13GithubReleaseV10CodingKeysO",
- "mangledName": "$s7LinkKit13GithubReleaseV10CodingKeysO",
+ "declKind": "Func",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP6string3forSSSgAA0cdeC0O_tF",
+ "mangledName": "$s7LinkKit20KeyValueStoreServiceP6string3forSSSgAA0cdeC0O_tF",
"moduleName": "LinkKit",
- "enumRawTypeName": "String",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "CodingKey",
- "printedName": "CodingKey",
- "usr": "s:s9CodingKeyP",
- "mangledName": "$ss9CodingKeyP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.KeyValueStoreService>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(htmlURL:tagName:name:draft:prerelease:publishedAt:body:)",
+ "kind": "Function",
+ "name": "set",
+ "printedName": "set(_:for:)",
"children": [
{
"kind": "TypeNominal",
- "name": "GithubRelease",
- "printedName": "LinkKit.GithubRelease",
- "usr": "s:7LinkKit13GithubReleaseV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
@@ -40344,66 +37915,127 @@
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP3set_3forySS_AA0cdeC0OtF",
+ "mangledName": "$s7LinkKit20KeyValueStoreServiceP3set_3forySS_AA0cdeC0OtF",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.KeyValueStoreService>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP",
+ "mangledName": "$s7LinkKit20KeyValueStoreServiceP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "UserDefaultsService",
+ "printedName": "UserDefaultsService",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(defaults:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
+ "name": "UserDefaultsService",
+ "printedName": "LinkKit.UserDefaultsService",
+ "usr": "s:7LinkKit19UserDefaultsServiceV"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "UserDefaults",
+ "printedName": "Foundation.UserDefaults",
+ "hasDefaultArg": true,
+ "usr": "c:objc(cs)NSUserDefaults"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV7htmlURL7tagName4name5draft10prerelease11publishedAt4bodyACSS_S2SS2b10Foundation4DateVSStcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV7htmlURL7tagName4name5draft10prerelease11publishedAt4bodyACSS_S2SS2b10Foundation4DateVSStcfc",
+ "usr": "s:7LinkKit19UserDefaultsServiceV8defaultsACSo06NSUserD0C_tcfc",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV8defaultsACSo06NSUserD0C_tcfc",
"moduleName": "LinkKit",
- "implicit": true,
+ "declAttributes": [
+ "RawDocComment"
+ ],
"init_kind": "Designated"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
+ "kind": "Var",
+ "name": "defaults",
+ "printedName": "defaults",
"children": [
{
"kind": "TypeNominal",
- "name": "GithubRelease",
- "printedName": "LinkKit.GithubRelease",
- "usr": "s:7LinkKit13GithubReleaseV"
+ "name": "UserDefaults",
+ "printedName": "Foundation.UserDefaults",
+ "usr": "c:objc(cs)NSUserDefaults"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit19UserDefaultsServiceV8defaults33_A39322CDD144454DFDEA5686E47673A8LLSo06NSUserD0Cvp",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV8defaults33_A39322CDD144454DFDEA5686E47673A8LLSo06NSUserD0Cvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Function",
+ "name": "string",
+ "printedName": "string(for:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit13GithubReleaseV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s7LinkKit13GithubReleaseV4fromACs7Decoder_p_tKcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit19UserDefaultsServiceV6string3forSSSgAA013KeyValueStoreH0O_tF",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV6string3forSSSgAA013KeyValueStoreH0O_tF",
"moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
+ "name": "set",
+ "printedName": "set(_:for:)",
"children": [
{
"kind": "TypeNominal",
@@ -40412,61 +38044,43 @@
},
{
"kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KeyValueStoreKey",
+ "printedName": "LinkKit.KeyValueStoreKey",
+ "usr": "s:7LinkKit013KeyValueStoreC0O"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit13GithubReleaseV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit13GithubReleaseV6encode2toys7Encoder_p_tKF",
+ "usr": "s:7LinkKit19UserDefaultsServiceV3set_3forySS_AA013KeyValueStoreH0OtF",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV3set_3forySS_AA013KeyValueStoreH0OtF",
"moduleName": "LinkKit",
- "implicit": true,
- "throwing": true,
+ "isFromExtension": true,
"funcSelfKind": "NonMutating"
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit13GithubReleaseV",
- "mangledName": "$s7LinkKit13GithubReleaseV",
+ "usr": "s:7LinkKit19UserDefaultsServiceV",
+ "mangledName": "$s7LinkKit19UserDefaultsServiceV",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "KeyValueStoreService",
+ "printedName": "KeyValueStoreService",
+ "usr": "s:7LinkKit20KeyValueStoreServiceP",
+ "mangledName": "$s7LinkKit20KeyValueStoreServiceP"
}
]
},
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "Import",
"name": "Foundation",
@@ -40475,43 +38089,51 @@
"moduleName": "LinkKit"
},
{
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
+ "kind": "TypeDecl",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit17InternalEquatableP2eeoiySbx_xtFZ",
+ "mangledName": "$s7LinkKit17InternalEquatableP2eeoiySbx_xtFZ",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalEquatable>",
+ "sugared_genericSig": "",
+ "static": true,
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP",
"moduleName": "LinkKit",
"declAttributes": [
- "ImplementationOnly"
+ "AccessControl",
+ "RawDocComment"
]
},
{
@@ -40521,465 +38143,395 @@
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "LinkHTTPServiceUserAgentProvider",
- "printedName": "LinkHTTPServiceUserAgentProvider",
+ "name": "VerificationStatus",
+ "printedName": "VerificationStatus",
"children": [
{
"kind": "Var",
- "name": "userAgent",
- "printedName": "userAgent",
+ "name": "pendingAutomaticVerification",
+ "printedName": "pendingAutomaticVerification",
"children": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvp",
- "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.VerificationStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvg",
- "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC04userE0SSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent",
- "Final"
- ],
- "accessorKind": "get"
+ ]
}
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18VerificationStatusO016pendingAutomaticC0yA2CmF",
+ "mangledName": "$s7LinkKit18VerificationStatusO016pendingAutomaticC0yA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
+ "kind": "Var",
+ "name": "pendingManualVerification",
+ "printedName": "pendingManualVerification",
"children": [
{
- "kind": "TypeNominal",
- "name": "LinkHTTPServiceUserAgentProvider",
- "printedName": "LinkKit.LinkHTTPServiceUserAgentProvider",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.VerificationStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderCACycfc",
- "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderCACycfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18VerificationStatusO013pendingManualC0yA2CmF",
+ "mangledName": "$s7LinkKit18VerificationStatusO013pendingManualC0yA2CmF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC",
- "mangledName": "$s7LinkKit0A28HTTPServiceUserAgentProviderC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "HTTPServiceUserAgentProviding",
- "printedName": "HTTPServiceUserAgentProviding",
- "usr": "s:7AppCore29HTTPServiceUserAgentProvidingP",
- "mangledName": "$s7AppCore29HTTPServiceUserAgentProvidingP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "EmbeddedSearchAndSelectView",
- "printedName": "EmbeddedSearchAndSelectView",
- "children": [
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(viewModel:)",
+ "kind": "Var",
+ "name": "manuallyVerified",
+ "printedName": "manuallyVerified",
"children": [
{
- "kind": "TypeNominal",
- "name": "EmbeddedSearchAndSelectView",
- "printedName": "LinkKit.EmbeddedSearchAndSelectView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView"
- },
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchViewModel",
- "printedName": "Workflow.EmbeddedSearchViewModel",
- "usr": "s:8Workflow23EmbeddedSearchViewModelC"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.VerificationStatus.Type) -> LinkKit.VerificationStatus",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.VerificationStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit27EmbeddedSearchAndSelectViewC9viewModelAC8Workflow0cdgI0C_tcfc",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC9viewModelAC8Workflow0cdgI0C_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18VerificationStatusO16manuallyVerifiedyA2CmF",
+ "mangledName": "$s7LinkKit18VerificationStatusO16manuallyVerifiedyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:didSelectItemAt:)",
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.VerificationStatus.Type) -> (Swift.String) -> LinkKit.VerificationStatus",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.VerificationStatus",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.VerificationStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit18VerificationStatusO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit18VerificationStatusO7unknownyACSScACmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
},
{
"kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didSelectItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_03didF6ItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit18VerificationStatusO4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit18VerificationStatusO4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "objc_name": "collectionView:didSelectItemAtIndexPath:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
"AccessControl"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:didHighlightItemAt:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
+ "name": "Optional",
+ "printedName": "LinkKit.VerificationStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
+ }
+ ],
+ "usr": "s:Sq"
},
{
"kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didHighlightItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_18didHighlightItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit18VerificationStatusO8rawValueACSgSS_tcfc",
+ "mangledName": "$s7LinkKit18VerificationStatusO8rawValueACSgSS_tcfc",
"moduleName": "LinkKit",
- "objc_name": "collectionView:didHighlightItemAtIndexPath:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
"AccessControl"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "init_kind": "Designated"
},
{
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:didUnhighlightItemAt:)",
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:didUnhighlightItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_20didUnhighlightItemAtySo012UICollectionG0C_10Foundation9IndexPathVtF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18VerificationStatusO11descriptionSSvp",
+ "mangledName": "$s7LinkKit18VerificationStatusO11descriptionSSvp",
"moduleName": "LinkKit",
- "objc_name": "collectionView:didUnhighlightItemAtIndexPath:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18VerificationStatusO11descriptionSSvg",
+ "mangledName": "$s7LinkKit18VerificationStatusO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:numberOfItemsInSection:)",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:numberOfItemsInSection:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_22numberOfItemsInSectionSiSo012UICollectionG0C_SitF",
+ "usr": "s:7LinkKit18VerificationStatusO6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit18VerificationStatusO6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "objc_name": "collectionView:numberOfItemsInSection:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
"AccessControl"
],
- "isFromExtension": true,
+ "throwing": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:cellForItemAt:)",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "UICollectionViewCell",
- "printedName": "UIKit.UICollectionViewCell",
- "usr": "c:objc(cs)UICollectionViewCell"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
"kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
},
{
"kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:cellForItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_13cellForItemAtSo012UICollectionG4CellCSo0mG0C_10Foundation9IndexPathVtF",
+ "usr": "s:7LinkKit18VerificationStatusO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit18VerificationStatusO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "objc_name": "collectionView:cellForItemAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
+ "static": true,
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
- "kind": "Function",
- "name": "collectionView",
- "printedName": "collectionView(_:layout:sizeForItemAt:)",
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreGraphics.CGSize",
- "usr": "c:@S@CGSize"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionView",
- "printedName": "UIKit.UICollectionView",
- "usr": "c:objc(cs)UICollectionView"
- },
- {
- "kind": "TypeNominal",
- "name": "UICollectionViewLayout",
- "printedName": "UIKit.UICollectionViewLayout",
- "usr": "c:objc(cs)UICollectionViewLayout"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
+ "name": "PLKVerificationStatus",
+ "printedName": "LinkKit.PLKVerificationStatus",
+ "usr": "c:objc(cs)PLKVerificationStatus"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchAndSelectView(im)collectionView:layout:sizeForItemAtIndexPath:",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC010collectionG0_6layout13sizeForItemAtSo6CGSizeVSo012UICollectionG0C_So0oG6LayoutC10Foundation9IndexPathVtF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvp",
+ "mangledName": "$s7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvp",
"moduleName": "LinkKit",
- "objc_name": "collectionView:layout:sizeForItemAtIndexPath:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
"isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKVerificationStatus",
+ "printedName": "LinkKit.PLKVerificationStatus",
+ "usr": "c:objc(cs)PLKVerificationStatus"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvg",
+ "mangledName": "$s7LinkKit18VerificationStatusO6toObjCSo015PLKVerificationD0Cvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
}
],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView",
- "mangledName": "$s7LinkKit27EmbeddedSearchAndSelectViewC",
+ "declKind": "Enum",
+ "usr": "s:7LinkKit18VerificationStatusO",
+ "mangledName": "$s7LinkKit18VerificationStatusO",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
+ "AccessControl"
],
"conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
{
"kind": "Conformance",
"name": "CustomStringConvertible",
@@ -40989,398 +38541,420 @@
},
{
"kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
"kind": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
"kind": "Conformance",
- "name": "LayoutArea",
- "printedName": "LayoutArea",
- "usr": "s:9AppCoreUI10LayoutAreaP",
- "mangledName": "$s9AppCoreUI10LayoutAreaP"
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
}
]
},
{
"kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
+ "name": "Foundation",
+ "printedName": "Foundation",
"declKind": "Import",
"moduleName": "LinkKit"
},
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "TodoPaneViewController",
- "printedName": "TodoPaneViewController",
+ "name": "AssetReportErrorCode",
+ "printedName": "AssetReportErrorCode",
"children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
+ "kind": "Var",
+ "name": "productNotEnabled",
+ "printedName": "productNotEnabled",
"children": [
{
- "kind": "TypeNominal",
- "name": "TodoPaneViewController",
- "printedName": "LinkKit.TodoPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "TODOViewModel",
- "printedName": "Workflow.TODOViewModel",
- "usr": "s:8Workflow13TODOViewModelC"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit22TodoPaneViewControllerC4withAC8Workflow13TODOViewModelC_tcfc",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC4withAC8Workflow13TODOViewModelC_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO17productNotEnabledyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO17productNotEnabledyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Required",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
+ "kind": "Var",
+ "name": "dataUnavailable",
+ "printedName": "dataUnavailable",
"children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.TodoPaneViewController?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "TodoPaneViewController",
- "printedName": "LinkKit.TodoPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO15dataUnavailableyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO15dataUnavailableyA2CmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required",
- "AccessControl",
"RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "kind": "Var",
+ "name": "productNotReady",
+ "printedName": "productNotReady",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC11viewDidLoadyyF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO15productNotReadyyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO15productNotReadyyA2CmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
"RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
+ "kind": "Var",
+ "name": "assetReportGenerationFailed",
+ "printedName": "assetReportGenerationFailed",
"children": [
{
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC13viewDidAppearyySbF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD16GenerationFailedyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD16GenerationFailedyA2CmF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ "RawDocComment"
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "invalidParent",
+ "printedName": "invalidParent",
"children": [
{
- "kind": "TypeNominal",
- "name": "TODOViewModel",
- "printedName": "Workflow.TODOViewModel",
- "usr": "s:8Workflow13TODOViewModelC"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit22TodoPaneViewControllerC9viewModel33_F224A9F6BC8F4F117F334109F7CC7D5DLL8Workflow08TODOViewH0Cvp",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC9viewModel33_F224A9F6BC8F4F117F334109F7CC7D5DLL8Workflow08TODOViewH0Cvp",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO13invalidParentyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO13invalidParentyA2CmF",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
"RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
+ ]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
+ "kind": "Var",
+ "name": "insightsNotEnabled",
+ "printedName": "insightsNotEnabled",
"children": [
{
- "kind": "TypeNominal",
- "name": "TodoPaneViewController",
- "printedName": "LinkKit.TodoPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
- },
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO18insightsNotEnabledyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO18insightsNotEnabledyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "insightsPreviouslyNotEnabled",
+ "printedName": "insightsPreviouslyNotEnabled",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> LinkKit.AssetReportErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO28insightsPreviouslyNotEnabledyA2CmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO28insightsPreviouslyNotEnabledyA2CmF",
"moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)TodoPaneViewController",
- "mangledName": "$s7LinkKit22TodoPaneViewControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
+ "RawDocComment"
+ ]
+ },
{
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.AssetReportErrorCode.Type) -> (Swift.String) -> LinkKit.AssetReportErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.AssetReportErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.AssetReportErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
{
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AssetReportErrorCode",
+ "printedName": "LinkKit.AssetReportErrorCode",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO6stringACSS_tcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "ReactNativeLinkKit",
- "printedName": "ReactNativeLinkKit",
- "children": [
{
"kind": "Var",
- "name": "sdkVersion",
- "printedName": "sdkVersion",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO11descriptionSSvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
@@ -41389,20 +38963,37 @@
"usr": "s:SS"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO11descriptionSSvg",
+ "moduleName": "LinkKit",
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "productNotEnabledString",
+ "printedName": "productNotEnabledString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvpZ",
- "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvpZ",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -41412,22 +39003,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvgZ",
- "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvgZ",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO23productNotEnabledStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -41435,538 +39018,534 @@
"Transparent"
],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "dataUnavailableString",
+ "printedName": "dataUnavailableString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvsZ",
- "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvsZ",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO21dataUnavailableStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
- "accessorKind": "set"
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "productNotReadyString",
+ "printedName": "productNotReadyString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit011ReactNativeaB0V10sdkVersionSSSgvMZ",
- "mangledName": "$s7LinkKit011ReactNativeaB0V10sdkVersionSSSgvMZ",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO21productNotReadyStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReactNativeLinkKit",
- "printedName": "LinkKit.ReactNativeLinkKit",
- "usr": "s:7LinkKit011ReactNativeaB0V"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit011ReactNativeaB0VACycfc",
- "mangledName": "$s7LinkKit011ReactNativeaB0VACycfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit011ReactNativeaB0V",
- "mangledName": "$s7LinkKit011ReactNativeaB0V",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "SafariServices",
- "printedName": "SafariServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AuthenticationServices",
- "printedName": "AuthenticationServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "LinkOOPWebViewController",
- "printedName": "LinkOOPWebViewController",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(ViewModel:)",
+ "kind": "Var",
+ "name": "assetReportGenerationFailedString",
+ "printedName": "assetReportGenerationFailedString",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkOOPWebViewController",
- "printedName": "LinkKit.LinkOOPWebViewController",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "OutOfProcessWebViewModel",
- "printedName": "Workflow.OutOfProcessWebViewModel",
- "usr": "s:8Workflow24OutOfProcessWebViewModelC"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A20OOPWebViewControllerC0D5ModelAC8Workflow015OutOfProcessWebdF0C_tcfc",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC0D5ModelAC8Workflow015OutOfProcessWebdF0C_tcfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "init_kind": "Designated"
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO05assetD22GenerationFailedStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
+ "kind": "Var",
+ "name": "invalidParentString",
+ "printedName": "invalidParentString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC13viewDidAppearyySbF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvpZ",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
+ "static": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO19invalidParentStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "insightsNotEnabledString",
+ "printedName": "insightsNotEnabledString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC11viewDidLoadyyF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvpZ",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
+ "static": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "funcSelfKind": "NonMutating"
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO24insightsNotEnabledStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "insightsPreviouslyNotEnabledString",
+ "printedName": "insightsPreviouslyNotEnabledString",
"children": [
{
"kind": "TypeNominal",
- "name": "OutOfProcessWebViewModel",
- "printedName": "Workflow.OutOfProcessWebViewModel",
- "usr": "s:8Workflow24OutOfProcessWebViewModelC"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A20OOPWebViewControllerC9viewModel33_511DB72405631A29D0102CBAA022739ALL8Workflow015OutOfProcessWebdG0Cvp",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC9viewModel33_511DB72405631A29D0102CBAA022739ALL8Workflow015OutOfProcessWebdG0Cvp",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvpZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvpZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "Custom",
- "Final",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 0,
"isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvgZ",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO34insightsPreviouslyNotEnabledStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "webAuthenticationSession",
- "printedName": "webAuthenticationSession",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Any?",
+ "printedName": "LinkKit.PLKAssetReportErrorCode?",
"children": [
{
"kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
+ "name": "PLKAssetReportErrorCode",
+ "printedName": "LinkKit.PLKAssetReportErrorCode",
+ "usr": "c:@E@PLKAssetReportErrorCode"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A20OOPWebViewControllerC24webAuthenticationSession33_511DB72405631A29D0102CBAA022739ALLypSgvp",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC24webAuthenticationSession33_511DB72405631A29D0102CBAA022739ALLypSgvp",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvp",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvp",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 1,
- "hasStorage": true
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKAssetReportErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKAssetReportErrorCode",
+ "printedName": "LinkKit.PLKAssetReportErrorCode",
+ "usr": "c:@E@PLKAssetReportErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvg",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO6toObjCSo08PLKAssetdeF0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit20AssetReportErrorCodeO",
+ "mangledName": "$s7LinkKit20AssetReportErrorCodeO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "SDKValidationService",
+ "printedName": "SDKValidationService",
+ "children": [
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(nibName:bundle:)",
+ "printedName": "init(sdkReleaseLoader:log:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkOOPWebViewController",
- "printedName": "LinkKit.LinkOOPWebViewController",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController"
+ "name": "SDKValidationService",
+ "printedName": "LinkKit.SDKValidationService",
+ "usr": "s:7LinkKit20SDKValidationServiceC"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "SDKReleaseLoader",
+ "printedName": "LinkKit.SDKReleaseLoader",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "usr": "s:7LinkKit20SDKValidationServiceC16sdkReleaseLoader3logAcA010SDKReleaseG0_p_3LogAGVtcfc",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC16sdkReleaseLoader3logAcA010SDKReleaseG0_p_3LogAGVtcfc",
"moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
+ "AccessControl",
+ "RawDocComment"
],
"init_kind": "Designated"
},
{
"kind": "Function",
- "name": "open",
- "printedName": "open(url:popupBehavior:)",
+ "name": "validateIntegration",
+ "printedName": "validateIntegration()",
"children": [
{
"kind": "TypeNominal",
"name": "Void",
"printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- },
- {
- "kind": "TypeNominal",
- "name": "Link_Workflow_Nodes_Panes_WebviewFallbackIOSPopupBehavior",
- "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_WebviewFallbackIOSPopupBehavior",
- "usr": "s:13WorkflowProto05Link_A44_Nodes_Panes_WebviewFallbackIOSPopupBehaviorO"
}
],
"declKind": "Func",
- "usr": "s:7LinkKit0A20OOPWebViewControllerC4open3url13popupBehaviory10Foundation3URLV_13WorkflowProto0a1_l36_Nodes_Panes_WebviewFallbackIOSPopupI0OtF",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC4open3url13popupBehaviory10Foundation3URLV_13WorkflowProto0a1_l36_Nodes_Panes_WebviewFallbackIOSPopupI0OtF",
+ "usr": "s:7LinkKit20SDKValidationServiceC19validateIntegrationyyF",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC19validateIntegrationyyF",
"moduleName": "LinkKit",
"declAttributes": [
"Final",
- "Custom"
+ "RawDocComment"
],
- "isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
- "kind": "Function",
- "name": "presentationAnchor",
- "printedName": "presentationAnchor(for:)",
+ "kind": "Var",
+ "name": "sdkReleaseLoader",
+ "printedName": "sdkReleaseLoader",
"children": [
{
"kind": "TypeNominal",
- "name": "UIWindow",
- "printedName": "UIKit.UIWindow",
- "usr": "c:objc(cs)UIWindow"
- },
- {
- "kind": "TypeNominal",
- "name": "ASWebAuthenticationSession",
- "printedName": "AuthenticationServices.ASWebAuthenticationSession",
- "usr": "c:objc(cs)ASWebAuthenticationSession"
+ "name": "SDKReleaseLoader",
+ "printedName": "LinkKit.SDKReleaseLoader",
+ "usr": "s:7LinkKit16SDKReleaseLoaderP"
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)LinkOOPWebViewController(im)presentationAnchorForWebAuthenticationSession:",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit20SDKValidationServiceC16sdkReleaseLoader33_DAB7F5C045708C32FAC47CA6EAB369F7LLAA010SDKReleaseG0_pvp",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC16sdkReleaseLoader33_DAB7F5C045708C32FAC47CA6EAB369F7LLAA010SDKReleaseG0_pvp",
"moduleName": "LinkKit",
- "objc_name": "presentationAnchorForWebAuthenticationSession:",
+ "isInternal": true,
"declAttributes": [
"Final",
- "ObjC",
- "Custom",
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "log",
+ "printedName": "log",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit20SDKValidationServiceC3log33_DAB7F5C045708C32FAC47CA6EAB369F7LL3LogAFVvp",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC3log33_DAB7F5C045708C32FAC47CA6EAB369F7LL3LogAFVvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true
}
],
"declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)LinkOOPWebViewController",
- "mangledName": "$s7LinkKit0A20OOPWebViewControllerC",
+ "usr": "s:7LinkKit20SDKValidationServiceC",
+ "mangledName": "$s7LinkKit20SDKValidationServiceC",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
"Final",
- "AccessControl",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "OutOfProcessWebViewModelDelegate",
- "printedName": "OutOfProcessWebViewModelDelegate",
- "usr": "s:8Workflow32OutOfProcessWebViewModelDelegateP",
- "mangledName": "$s8Workflow32OutOfProcessWebViewModelDelegateP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
+ "AccessControl"
]
},
{
@@ -42006,50 +39585,44 @@
"ImplementationOnly"
]
},
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "Token",
- "printedName": "Token",
+ "name": "Constants",
+ "printedName": "Constants",
"children": [
{
"kind": "Var",
- "name": "publicKey",
- "printedName": "publicKey",
+ "name": "linkWebviewFallbackScheme",
+ "printedName": "linkWebviewFallbackScheme",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.Token.Type) -> (LinkKit.LinkPublicKeyConfiguration.Token) -> LinkKit.Token",
+ "printedName": "(LinkKit.Constants.Type) -> LinkKit.Constants",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration.Token) -> LinkKit.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.LinkPublicKeyConfiguration.Token",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV5TokenO"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Constants",
+ "printedName": "LinkKit.Constants",
+ "usr": "s:7LinkKit9ConstantsO"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.Token.Type",
+ "printedName": "LinkKit.Constants.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
+ "name": "Constants",
+ "printedName": "LinkKit.Constants",
+ "usr": "s:7LinkKit9ConstantsO"
}
]
}
@@ -42057,234 +39630,247 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit5TokenO9publicKeyyAcA0a6PublicE13ConfigurationVABOcACmF",
- "mangledName": "$s7LinkKit5TokenO9publicKeyyAcA0a6PublicE13ConfigurationVABOcACmF",
+ "usr": "s:7LinkKit9ConstantsO25linkWebviewFallbackSchemeyA2CmF",
+ "mangledName": "$s7LinkKit9ConstantsO25linkWebviewFallbackSchemeyA2CmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 0
},
{
"kind": "Var",
- "name": "link",
- "printedName": "link",
+ "name": "rawValue",
+ "printedName": "rawValue",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Token.Type) -> (Swift.String) -> LinkKit.Token",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.Token",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit9ConstantsO8rawValueSSvp",
+ "mangledName": "$s7LinkKit9ConstantsO8rawValueSSvp",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Token.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit9ConstantsO8rawValueSSvg",
+ "mangledName": "$s7LinkKit9ConstantsO8rawValueSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.Constants?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Constants",
+ "printedName": "LinkKit.Constants",
+ "usr": "s:7LinkKit9ConstantsO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit5TokenO4linkyACSScACmF",
- "mangledName": "$s7LinkKit5TokenO4linkyACSScACmF",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit9ConstantsO8rawValueACSgSS_tcfc",
+ "mangledName": "$s7LinkKit9ConstantsO8rawValueACSgSS_tcfc",
"moduleName": "LinkKit",
- "fixedbinaryorder": 1
+ "implicit": true,
+ "init_kind": "Designated"
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit5TokenO",
- "mangledName": "$s7LinkKit5TokenO",
+ "usr": "s:7LinkKit9ConstantsO",
+ "mangledName": "$s7LinkKit9ConstantsO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
],
- "isEnumExhaustive": true
- },
- {
- "kind": "TypeDecl",
- "name": "OAuthMode",
- "printedName": "OAuthMode",
- "children": [
+ "enumRawTypeName": "String",
+ "isEnumExhaustive": true,
+ "conformances": [
{
- "kind": "Var",
- "name": "linkPublicKey",
- "printedName": "linkPublicKey",
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.OAuthMode.Type) -> (LinkKit.OAuthNonceConfiguration) -> LinkKit.OAuthMode",
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
"children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.OAuthNonceConfiguration) -> LinkKit.OAuthMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthMode",
- "printedName": "LinkKit.OAuthMode",
- "usr": "s:7LinkKit9OAuthModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
- }
- ]
- },
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.OAuthMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthMode",
- "printedName": "LinkKit.OAuthMode",
- "usr": "s:7LinkKit9OAuthModeO"
- }
- ]
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
]
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9OAuthModeO13linkPublicKeyyAcA0C18NonceConfigurationVcACmF",
- "mangledName": "$s7LinkKit9OAuthModeO13linkPublicKeyyAcA0C18NonceConfigurationVcACmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ],
- "fixedbinaryorder": 0
+ "usr": "s:SY",
+ "mangledName": "$sSY"
},
{
- "kind": "Var",
- "name": "redirectUriMode",
- "printedName": "redirectUriMode",
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PLKPlaid",
+ "printedName": "PLKPlaid",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "createWithLinkTokenConfiguration",
+ "printedName": "createWithLinkTokenConfiguration(_:error:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.OAuthMode.Type) -> (Foundation.URL) -> LinkKit.OAuthMode",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKHandler?",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Foundation.URL) -> LinkKit.OAuthMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "OAuthMode",
- "printedName": "LinkKit.OAuthMode",
- "usr": "s:7LinkKit9OAuthModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ]
- },
+ "kind": "TypeNominal",
+ "name": "PLKHandler",
+ "printedName": "LinkKit.PLKHandler",
+ "usr": "c:objc(pl)PLKHandler"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PLKLinkTokenConfiguration",
+ "printedName": "LinkKit.PLKLinkTokenConfiguration",
+ "usr": "c:objc(cs)PLKLinkTokenConfiguration"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AutoreleasingUnsafeMutablePointer?",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.OAuthMode.Type",
+ "name": "AutoreleasingUnsafeMutablePointer",
+ "printedName": "Swift.AutoreleasingUnsafeMutablePointer",
"children": [
{
"kind": "TypeNominal",
- "name": "OAuthMode",
- "printedName": "LinkKit.OAuthMode",
- "usr": "s:7LinkKit9OAuthModeO"
+ "name": "Optional",
+ "printedName": "Foundation.NSError?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSError",
+ "printedName": "Foundation.NSError",
+ "usr": "c:objc(cs)NSError"
+ }
+ ],
+ "usr": "s:Sq"
}
- ]
+ ],
+ "usr": "s:SA"
}
- ]
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9OAuthModeO011redirectUriD0yAC10Foundation3URLVcACmF",
- "mangledName": "$s7LinkKit9OAuthModeO011redirectUriD0yAC10Foundation3URLVcACmF",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)createWithLinkTokenConfiguration:error:",
+ "mangledName": "$s7LinkKit8PLKPlaidC010createWithA18TokenConfiguration_5errorSo10PLKHandler_pSgSo07PLKLinkfG0C_SAySo7NSErrorCSgGSgtFZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "RawDocComment"
+ "Final",
+ "AccessControl",
+ "ObjC"
],
- "fixedbinaryorder": 1
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "redirectUri",
- "printedName": "redirectUri",
+ "name": "sdkVersion",
+ "printedName": "sdkVersion",
"children": [
{
"kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit9OAuthModeO11redirectUri10Foundation3URLVvp",
- "mangledName": "$s7LinkKit9OAuthModeO11redirectUri10Foundation3URLVvp",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cpy)sdkVersion",
+ "mangledName": "$s7LinkKit8PLKPlaidC10sdkVersionSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "AccessControl"
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
],
"accessors": [
{
"kind": "Accessor",
"name": "Get",
"printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit9OAuthModeO11redirectUri10Foundation3URLVvg",
- "mangledName": "$s7LinkKit9OAuthModeO11redirectUri10Foundation3URLVvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "oauthStateID",
- "printedName": "oauthStateID",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -42293,137 +39879,144 @@
"usr": "s:SS"
}
],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit9OAuthModeO12oauthStateIDSSSgvp",
- "mangledName": "$s7LinkKit9OAuthModeO12oauthStateIDSSSgvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
"declKind": "Accessor",
- "usr": "s:7LinkKit9OAuthModeO12oauthStateIDSSSgvg",
- "mangledName": "$s7LinkKit9OAuthModeO12oauthStateIDSSSgvg",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)sdkVersion",
+ "mangledName": "$s7LinkKit8PLKPlaidC10sdkVersionSSvgZ",
"moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
"accessorKind": "get"
}
]
},
{
- "kind": "Function",
- "name": "oauthStateID",
- "printedName": "oauthStateID(from:)",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "PLKPlaid",
+ "printedName": "LinkKit.PLKPlaid",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit9OAuthModeO12oauthStateID4fromSSSg10Foundation3URLV_tFZ",
- "mangledName": "$s7LinkKit9OAuthModeO12oauthStateID4fromSSSg10Foundation3URLV_tFZ",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(im)init",
+ "mangledName": "$s7LinkKit8PLKPlaidCACycfc",
"moduleName": "LinkKit",
- "static": true,
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
"declAttributes": [
- "AccessControl"
+ "Dynamic",
+ "ObjC",
+ "Override"
],
- "funcSelfKind": "NonMutating"
+ "init_kind": "Designated"
}
],
- "declKind": "Enum",
- "usr": "s:7LinkKit9OAuthModeO",
- "mangledName": "$s7LinkKit9OAuthModeO",
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)PLKPlaid",
+ "mangledName": "$s7LinkKit8PLKPlaidC",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
"AccessControl",
+ "ObjC",
"RawDocComment"
],
- "isEnumExhaustive": true
+ "superclassUsr": "c:objc(cs)NSObject",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
},
{
"kind": "TypeDecl",
- "name": "Configuration",
- "printedName": "Configuration",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "PLKPlaidConfigurationError",
"children": [
{
"kind": "Var",
- "name": "linkPublicKey",
- "printedName": "linkPublicKey",
+ "name": "malformedClientID",
+ "printedName": "malformedClientID",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.Configuration.Type) -> (LinkKit.LinkPublicKeyConfiguration) -> LinkKit.Configuration",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkPublicKeyConfiguration) -> LinkKit.Configuration",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.Configuration.Type",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
]
}
@@ -42431,63 +40024,40 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ConfigurationO13linkPublicKeyyAcA0aefC0VcACmF",
- "mangledName": "$s7LinkKit13ConfigurationO13linkPublicKeyyAcA0aefC0VcACmF",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorMalformedClientID",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO17malformedClientIDyA2CmF",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
"fixedbinaryorder": 0
},
{
"kind": "Var",
- "name": "linkToken",
- "printedName": "linkToken",
+ "name": "missingAuthorization",
+ "printedName": "missingAuthorization",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.Configuration.Type) -> (LinkKit.LinkTokenConfiguration, LinkKit.Environment) -> LinkKit.Configuration",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkTokenConfiguration, LinkKit.Environment) -> LinkKit.Configuration",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(LinkKit.LinkTokenConfiguration, LinkKit.Environment)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
- }
- ]
- }
- ]
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
},
{
"kind": "TypeNominal",
"name": "Metatype",
- "printedName": "LinkKit.Configuration.Type",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
]
}
@@ -42495,223 +40065,269 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit13ConfigurationO9linkTokenyAcA0aeC0V_AA11EnvironmentOtcACmF",
- "mangledName": "$s7LinkKit13ConfigurationO9linkTokenyAcA0aeC0V_AA11EnvironmentOtcACmF",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorMissingAuthorization",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO20missingAuthorizationyA2CmF",
"moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
"fixedbinaryorder": 1
},
{
"kind": "Var",
- "name": "onEvent",
- "printedName": "onEvent",
+ "name": "noProduct",
+ "printedName": "noProduct",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
},
{
"kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO7onEventyyAA0aE0Vcvp",
- "mangledName": "$s7LinkKit13ConfigurationO7onEventyyAA0aE0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorNoProduct",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO9noProductyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl",
- "RawDocComment"
+ "ObjC"
],
- "accessors": [
+ "fixedbinaryorder": 2
+ },
+ {
+ "kind": "Var",
+ "name": "invalidOptionValue",
+ "printedName": "invalidOptionValue",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkEvent) -> ()",
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkEvent",
- "printedName": "LinkKit.LinkEvent",
- "usr": "s:7LinkKit0A5EventV"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO7onEventyyAA0aE0Vcvg",
- "mangledName": "$s7LinkKit13ConfigurationO7onEventyyAA0aE0Vcvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidOptionValue",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO18invalidOptionValueyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "fixedbinaryorder": 3
},
{
"kind": "Var",
- "name": "onExit",
- "printedName": "onExit",
+ "name": "invalidOptionCombination",
+ "printedName": "invalidOptionCombination",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
},
{
"kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO6onExityyAA0aE0Vcvp",
- "mangledName": "$s7LinkKit13ConfigurationO6onExityyAA0aE0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidOptionCombination",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO24invalidOptionCombinationyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "ObjC"
],
- "accessors": [
+ "fixedbinaryorder": 4
+ },
+ {
+ "kind": "Var",
+ "name": "invalidEnvironmentValue",
+ "printedName": "invalidEnvironmentValue",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkExit) -> ()",
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkExit",
- "printedName": "LinkKit.LinkExit",
- "usr": "s:7LinkKit0A4ExitV"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
]
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO6onExityyAA0aE0Vcvg",
- "mangledName": "$s7LinkKit13ConfigurationO6onExityyAA0aE0Vcvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidEnvironmentValue",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO23invalidEnvironmentValueyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "fixedbinaryorder": 5
},
{
"kind": "Var",
- "name": "onSuccess",
- "printedName": "onSuccess",
+ "name": "invalidToken",
+ "printedName": "invalidToken",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
+ "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
},
{
"kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
+ "name": "Metatype",
+ "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
+ }
+ ]
}
]
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO9onSuccessyyAA0aE0Vcvp",
- "mangledName": "$s7LinkKit13ConfigurationO9onSuccessyyAA0aE0Vcvp",
+ "declKind": "EnumElement",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidToken",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO12invalidTokenyA2CmF",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "ObjC"
],
- "accessors": [
+ "fixedbinaryorder": 6
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKPlaidConfigurationError?",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.LinkSuccess) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LinkSuccess",
- "printedName": "LinkKit.LinkSuccess",
- "usr": "s:7LinkKit0A7SuccessV"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "PLKPlaidConfigurationError",
+ "printedName": "LinkKit.PLKPlaidConfigurationError",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO9onSuccessyyAA0aE0Vcvg",
- "mangledName": "$s7LinkKit13ConfigurationO9onSuccessyyAA0aE0Vcvg",
- "moduleName": "LinkKit",
- "accessorKind": "get"
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
- ]
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueACSgSi_tcfc",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueACSgSi_tcfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "isLinkUIPresentationImmediate",
- "printedName": "isLinkUIPresentationImmediate",
+ "name": "rawValue",
+ "printedName": "rawValue",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO02isA23UIPresentationImmediateSbvp",
- "mangledName": "$s7LinkKit13ConfigurationO02isA23UIPresentationImmediateSbvp",
+ "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivp",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivp",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
+ "implicit": true,
"accessors": [
{
"kind": "Accessor",
@@ -42720,38 +40336,128 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO02isA23UIPresentationImmediateSbvg",
- "mangledName": "$s7LinkKit13ConfigurationO02isA23UIPresentationImmediateSbvg",
+ "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivg",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivg",
"moduleName": "LinkKit",
+ "implicit": true,
"accessorKind": "get"
}
]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError",
+ "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "enumRawTypeName": "Int",
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PLKHandlerShim",
+ "printedName": "PLKHandlerShim",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(handler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKHandlerShim",
+ "printedName": "LinkKit.PLKHandlerShim",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit14PLKHandlerShimC7handlerAcA7Handler_p_tcfc",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAcA7Handler_p_tcfc",
+ "moduleName": "LinkKit",
+ "init_kind": "Designated"
},
{
"kind": "Var",
- "name": "environment",
- "printedName": "environment",
+ "name": "handler",
+ "printedName": "handler",
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit13ConfigurationO11environmentAA11EnvironmentOvp",
- "mangledName": "$s7LinkKit13ConfigurationO11environmentAA11EnvironmentOvp",
+ "usr": "s:7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvp",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvp",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "Final",
+ "HasStorage"
],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -42760,63 +40466,37 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Environment",
- "printedName": "LinkKit.Environment",
- "usr": "s:7LinkKit11EnvironmentO"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit13ConfigurationO11environmentAA11EnvironmentOvg",
- "mangledName": "$s7LinkKit13ConfigurationO11environmentAA11EnvironmentOvg",
+ "usr": "s:7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvg",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvg",
"moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
"accessorKind": "get"
}
]
},
{
"kind": "Function",
- "name": "loadSessionConfiguration",
- "printedName": "loadSessionConfiguration(_:_:_:_:_:_:)",
+ "name": "open",
+ "printedName": "open(presentationHandler:)",
"children": [
{
"kind": "TypeNominal",
"name": "Void",
"printedName": "()"
},
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(LinkKit.Token, WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration) -> ()",
+ "printedName": "(UIKit.UIViewController) -> ()",
"children": [
{
"kind": "TypeNominal",
@@ -42825,278 +40505,198 @@
},
{
"kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(LinkKit.Token, WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Token",
- "printedName": "LinkKit.Token",
- "usr": "s:7LinkKit5TokenO"
- },
- {
- "kind": "TypeNominal",
- "name": "OneOf_Configuration",
- "printedName": "WorkflowProto.Link_Api_LinkWorkflowStartRequest.OneOf_Configuration",
- "usr": "s:13WorkflowProto09Link_Api_cA12StartRequestV19OneOf_ConfigurationO"
- }
- ]
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
]
}
],
"declKind": "Func",
- "usr": "s:7LinkKit13ConfigurationO011loadSessionC0yySS_S2SSb3LogAEVyAA5TokenO_13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_C0OtctF",
- "mangledName": "$s7LinkKit13ConfigurationO011loadSessionC0yySS_S2SSb3LogAEVyAA5TokenO_13WorkflowProto0a5_Api_aH12StartRequestV06OneOf_C0OtctF",
+ "usr": "s:7LinkKit14PLKHandlerShimC4open19presentationHandleryySo16UIViewControllerCc_tF",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandleryySo16UIViewControllerCc_tF",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
+ "isOpen": true,
"funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit13ConfigurationO",
- "mangledName": "$s7LinkKit13ConfigurationO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isEnumExhaustive": true
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LoadingPaneViewController",
- "printedName": "LoadingPaneViewController",
- "children": [
+ },
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(presentationHandler:dismissalHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LoadingPaneViewController",
- "printedName": "LinkKit.LoadingPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
+ "name": "Void",
+ "printedName": "()"
},
{
- "kind": "TypeNominal",
- "name": "LoadingViewModel",
- "printedName": "Workflow.LoadingViewModel",
- "usr": "s:8Workflow16LoadingViewModelC"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit25LoadingPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.LoadingPaneViewController?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "LoadingPaneViewController",
- "printedName": "LinkKit.LoadingPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
- }
- ],
- "usr": "s:Sq"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
},
{
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:dismissalHandler:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandler09dismissalG0yySo16UIViewControllerCc_yAHctF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
+ "isOpen": true,
+ "objc_name": "openWithPresentationHandler:dismissalHandler:",
"declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
+ "ObjC"
],
- "init_kind": "Designated"
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "name": "open",
+ "printedName": "open(withContextViewController:)",
"children": [
{
"kind": "TypeNominal",
"name": "Void",
"printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
],
"declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC11viewDidLoadyyF",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithContextViewController:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC4open25withContextViewControllerySo06UIViewI0C_tF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
+ "isOpen": true,
+ "objc_name": "openWithContextViewController:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
+ "ObjC"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewWillAppear",
- "printedName": "viewWillAppear(_:)",
+ "name": "createEmbeddedView",
+ "printedName": "createEmbeddedView(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
],
"declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewWillAppear:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC14viewWillAppearyySbF",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)createEmbeddedView:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC18createEmbeddedViewySo6UIViewCSo0H10ControllerCF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewWillAppear:",
+ "isOpen": true,
+ "objc_name": "createEmbeddedView:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
+ "ObjC"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
+ "name": "createEmbeddedView",
+ "printedName": "createEmbeddedView(_:dismissalHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
},
{
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(UIKit.UIViewController) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
+ }
+ ]
}
],
"declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC13viewDidAppearyySbF",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)createEmbeddedView:dismissalHandler:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC18createEmbeddedView_16dismissalHandlerSo6UIViewCySo0J10ControllerCc_yAIctF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
+ "isOpen": true,
+ "objc_name": "createEmbeddedView:dismissalHandler:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
+ "ObjC"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "viewDidDisappear",
- "printedName": "viewDidDisappear(_:)",
+ "name": "resume",
+ "printedName": "resume(afterTermination:)",
"children": [
{
"kind": "TypeNominal",
@@ -43105,187 +40705,59 @@
},
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
}
],
"declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)viewDidDisappear:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC16viewDidDisappearyySbF",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)resumeAfterTermination:",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC6resume16afterTerminationy10Foundation3URLV_tF",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidDisappear:",
+ "isOpen": true,
+ "objc_name": "resumeAfterTermination:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
+ "ObjC"
],
"funcSelfKind": "NonMutating"
},
- {
- "kind": "Var",
- "name": "activityIndicatorView",
- "printedName": "activityIndicatorView",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PlaidActivityIndicator",
- "printedName": "Threads.PlaidActivityIndicator",
- "usr": "c:@M@Threads@objc(cs)PlaidActivityIndicator"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit25LoadingPaneViewControllerC017activityIndicatorE033_02203F4AD901BE57F27AD614C29CA913LL7Threads013PlaidActivityH0Cvp",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC017activityIndicatorE033_02203F4AD901BE57F27AD614C29CA913LL7Threads013PlaidActivityH0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LoadingViewModel",
- "printedName": "Workflow.LoadingViewModel",
- "usr": "s:8Workflow16LoadingViewModelC"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit25LoadingPaneViewControllerC9viewModel33_02203F4AD901BE57F27AD614C29CA913LL8Workflow0ceH0Cvp",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC9viewModel33_02203F4AD901BE57F27AD614C29CA913LL8Workflow0ceH0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "timer",
- "printedName": "timer",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Timer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Timer",
- "printedName": "Foundation.Timer",
- "usr": "c:objc(cs)NSTimer"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit25LoadingPaneViewControllerC5timer33_02203F4AD901BE57F27AD614C29CA913LLSo7NSTimerCSgvp",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC5timer33_02203F4AD901BE57F27AD614C29CA913LLSo7NSTimerCSgvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 2,
- "hasStorage": true
- },
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(nibName:bundle:)",
+ "printedName": "init()",
"children": [
{
"kind": "TypeNominal",
- "name": "LoadingPaneViewController",
- "printedName": "LinkKit.LoadingPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
+ "name": "PLKHandlerShim",
+ "printedName": "LinkKit.PLKHandlerShim",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim"
}
],
"declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)init",
+ "mangledName": "$s7LinkKit14PLKHandlerShimCACycfc",
"moduleName": "LinkKit",
"overriding": true,
"implicit": true,
- "objc_name": "initWithNibName:bundle:",
+ "objc_name": "init",
"declAttributes": [
"Dynamic",
"ObjC",
- "Custom",
"Override"
],
"init_kind": "Designated"
}
],
"declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)LoadingPaneViewController",
- "mangledName": "$s7LinkKit25LoadingPaneViewControllerC",
+ "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim",
+ "mangledName": "$s7LinkKit14PLKHandlerShimC",
"moduleName": "LinkKit",
+ "isOpen": true,
"declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
"ObjC"
],
- "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassUsr": "c:objc(cs)NSObject",
"superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
"ObjectiveC.NSObject"
],
"conformances": [
@@ -43337,313 +40809,276 @@
"printedName": "CustomDebugStringConvertible",
"usr": "s:s28CustomDebugStringConvertibleP",
"mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
}
]
},
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AuthenticationServices",
- "printedName": "AuthenticationServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "SafariServices",
- "printedName": "SafariServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "os",
- "printedName": "os",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
{
"kind": "TypeDecl",
- "name": "LinkHandler",
- "printedName": "LinkHandler",
+ "name": "ExitErrorRawCode",
+ "printedName": "ExitErrorRawCode",
"children": [
{
- "kind": "TypeDecl",
- "name": "Dependencies",
- "printedName": "Dependencies",
+ "kind": "Var",
+ "name": "int",
+ "printedName": "int",
"children": [
{
- "kind": "Var",
- "name": "keyValueStoreServiceFactory",
- "printedName": "keyValueStoreServiceFactory",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.Int) -> LinkKit.ExitErrorRawCode",
"children": [
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "() -> LinkKit.KeyValueStoreService",
+ "printedName": "(Swift.Int) -> LinkKit.ExitErrorRawCode",
"children": [
{
"kind": "TypeNominal",
- "name": "KeyValueStoreService",
- "printedName": "LinkKit.KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
},
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
}
]
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvp",
- "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasStorage"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorRawCode.Type",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> LinkKit.KeyValueStoreService",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreService",
- "printedName": "LinkKit.KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvg",
- "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAA03KeyfgH0_pycvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
]
- },
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO3intyACSicACmF",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO3intyACSicACmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 0
+ },
+ {
+ "kind": "Var",
+ "name": "string",
+ "printedName": "string",
+ "children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(keyValueStoreServiceFactory:)",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.String) -> LinkKit.ExitErrorRawCode",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Dependencies",
- "printedName": "LinkKit.LinkHandler.Dependencies",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "() -> LinkKit.KeyValueStoreService",
+ "printedName": "(Swift.String) -> LinkKit.ExitErrorRawCode",
"children": [
{
"kind": "TypeNominal",
- "name": "KeyValueStoreService",
- "printedName": "LinkKit.KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
},
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ],
- "hasDefaultArg": true
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorRawCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
+ }
+ ]
}
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAeA03KeyfgH0_pyc_tcfc",
- "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV27keyValueStoreServiceFactoryAeA03KeyfgH0_pyc_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "init_kind": "Designated"
+ ]
}
],
- "declKind": "Struct",
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV",
- "mangledName": "$s7LinkKit0A7HandlerC12DependenciesV",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO6stringyACSScACmF",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO6stringyACSScACmF",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
+ "fixedbinaryorder": 1
+ },
+ {
+ "kind": "Var",
+ "name": "unknownTypeAndCode",
+ "printedName": "unknownTypeAndCode",
+ "children": [
{
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.String, Swift.String) -> LinkKit.ExitErrorRawCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String, Swift.String) -> LinkKit.ExitErrorRawCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(type: Swift.String, code: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.ExitErrorRawCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
+ }
+ ]
+ }
+ ]
}
- ]
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO014unknownTypeAndF0yACSS_SStcACmF",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO014unknownTypeAndF0yACSS_SStcACmF",
+ "moduleName": "LinkKit",
+ "fixedbinaryorder": 2
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(configuration:dependencies:)",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkHandler",
- "printedName": "LinkKit.LinkHandler",
- "usr": "s:7LinkKit0A7HandlerC"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
"kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
},
{
"kind": "TypeNominal",
- "name": "Dependencies",
- "printedName": "LinkKit.LinkHandler.Dependencies",
- "hasDefaultArg": true,
- "usr": "s:7LinkKit0A7HandlerC12DependenciesV"
+ "name": "ExitErrorRawCode",
+ "printedName": "LinkKit.ExitErrorRawCode",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit0A7HandlerC13configuration12dependenciesAcA13ConfigurationO_AC12DependenciesVtcfc",
- "mangledName": "$s7LinkKit0A7HandlerC13configuration12dependenciesAcA13ConfigurationO_AC12DependenciesVtcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit16ExitErrorRawCodeO",
+ "mangledName": "$s7LinkKit16ExitErrorRawCodeO",
+ "moduleName": "LinkKit",
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
},
{
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentUsing:)",
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Account",
+ "printedName": "Account",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "id",
+ "printedName": "id",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC4open12presentUsingyAA18PresentationMethodO_tF",
- "mangledName": "$s7LinkKit0A7HandlerC4open12presentUsingyAA18PresentationMethodO_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7AccountV2idSSvp",
+ "mangledName": "$s7LinkKit7AccountV2idSSvp",
"moduleName": "LinkKit",
- "isOpen": true,
"declAttributes": [
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentUsing:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
- },
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
{
"kind": "TypeNominal",
"name": "String",
@@ -43651,181 +41086,143 @@
"usr": "s:SS"
}
],
- "hasDefaultArg": true,
- "usr": "s:SD"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7AccountV2idSSvg",
+ "mangledName": "$s7LinkKit7AccountV2idSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC4open12presentUsing_yAA18PresentationMethodO_SDyS2SGtF",
- "mangledName": "$s7LinkKit0A7HandlerC4open12presentUsing_yAA18PresentationMethodO_SDyS2SGtF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "resumeAfterTermination",
- "printedName": "resumeAfterTermination(from:)",
+ "kind": "Var",
+ "name": "name",
+ "printedName": "name",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC22resumeAfterTermination4fromy10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit0A7HandlerC22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7AccountV4nameSSvp",
+ "mangledName": "$s7LinkKit7AccountV4nameSSvp",
"moduleName": "LinkKit",
- "isOpen": true,
"declAttributes": [
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continue",
- "printedName": "continue(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7AccountV4nameSSvg",
+ "mangledName": "$s7LinkKit7AccountV4nameSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC8continue4fromy10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit0A7HandlerC8continue4fromy10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "continueFrom",
- "printedName": "continueFrom(redirectUri:)",
+ "kind": "Var",
+ "name": "mask",
+ "printedName": "mask",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "LinkKit.HandlerContinueError?",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
- "name": "HandlerContinueError",
- "printedName": "LinkKit.HandlerContinueError",
- "usr": "s:7LinkKit20HandlerContinueErrorO"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC12continueFrom11redirectUriAA0C13ContinueErrorOSg10Foundation3URLV_tF",
- "mangledName": "$s7LinkKit0A7HandlerC12continueFrom11redirectUriAA0C13ContinueErrorOSg10Foundation3URLV_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit7AccountV4maskSSSgvp",
+ "mangledName": "$s7LinkKit7AccountV4maskSSSgvp",
"moduleName": "LinkKit",
- "isOpen": true,
"declAttributes": [
+ "HasStorage",
"AccessControl",
"RawDocComment"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "createEmbeddedView",
- "printedName": "createEmbeddedView(presentUsing:)",
- "children": [
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- },
- {
- "kind": "TypeNominal",
- "name": "ConfigurationError",
- "printedName": "LinkKit.ConfigurationError",
- "usr": "s:7LinkKit18ConfigurationErrorO"
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "usr": "s:s6ResultO"
- },
- {
- "kind": "TypeNominal",
- "name": "PresentationMethod",
- "printedName": "LinkKit.PresentationMethod",
- "usr": "s:7LinkKit18PresentationMethodO"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7AccountV4maskSSSgvg",
+ "mangledName": "$s7LinkKit7AccountV4maskSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit0A7HandlerC18createEmbeddedView12presentUsings6ResultOySo6UIViewCAA18ConfigurationErrorOGAA18PresentationMethodO_tF",
- "mangledName": "$s7LinkKit0A7HandlerC18createEmbeddedView12presentUsings6ResultOySo6UIViewCAA18ConfigurationErrorOGAA18PresentationMethodO_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Var",
- "name": "linkOpenID",
- "printedName": "linkOpenID",
+ "name": "subtype",
+ "printedName": "subtype",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "AccountSubtype",
+ "printedName": "LinkKit.AccountSubtype",
+ "usr": "s:7LinkKit14AccountSubtypeO"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC10linkOpenIDSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC10linkOpenIDSSvp",
+ "usr": "s:7LinkKit7AccountV7subtypeAA0C7SubtypeOvp",
+ "mangledName": "$s7LinkKit7AccountV7subtypeAA0C7SubtypeOvp",
"moduleName": "LinkKit",
- "isOpen": true,
"declAttributes": [
- "HasInitialValue",
"HasStorage",
- "SetterAccess",
"AccessControl",
"RawDocComment"
],
- "fixedbinaryorder": 0,
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -43835,68 +41232,50 @@
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "AccountSubtype",
+ "printedName": "LinkKit.AccountSubtype",
+ "usr": "s:7LinkKit14AccountSubtypeO"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC10linkOpenIDSSvg",
- "mangledName": "$s7LinkKit0A7HandlerC10linkOpenIDSSvg",
+ "usr": "s:7LinkKit7AccountV7subtypeAA0C7SubtypeOvg",
+ "mangledName": "$s7LinkKit7AccountV7subtypeAA0C7SubtypeOvg",
"moduleName": "LinkKit",
"implicit": true,
- "isOpen": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "onSessionCreated",
- "printedName": "onSessionCreated",
+ "name": "verificationStatus",
+ "printedName": "verificationStatus",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "((Workflow.Session) -> ())?",
+ "printedName": "LinkKit.VerificationStatus?",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Workflow.Session) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Session",
- "printedName": "Workflow.Session",
- "usr": "s:8Workflow7SessionC"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvp",
+ "usr": "s:7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvp",
+ "mangledName": "$s7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvp",
"moduleName": "LinkKit",
- "isOpen": true,
"declAttributes": [
- "HasInitialValue",
"HasStorage",
"AccessControl",
"RawDocComment"
],
- "fixedbinaryorder": 1,
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -43907,142 +41286,54 @@
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "((Workflow.Session) -> ())?",
+ "printedName": "LinkKit.VerificationStatus?",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Workflow.Session) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Session",
- "printedName": "Workflow.Session",
- "usr": "s:8Workflow7SessionC"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
}
],
"usr": "s:Sq"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvg",
- "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvg",
+ "usr": "s:7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvg",
+ "mangledName": "$s7LinkKit7AccountV18verificationStatusAA012VerificationE0OSgvg",
"moduleName": "LinkKit",
"implicit": true,
- "isOpen": true,
- "declAttributes": [
- "Transparent"
- ],
"accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(id:name:mask:subtype:verificationStatus:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
},
{
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Workflow.Session) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Workflow.Session) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Session",
- "printedName": "Workflow.Session",
- "usr": "s:8Workflow7SessionC"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvs",
- "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvs",
- "moduleName": "LinkKit",
- "implicit": true,
- "isOpen": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "set"
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
},
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvM",
- "mangledName": "$s7LinkKit0A7HandlerC16onSessionCreatedy8Workflow0E0CcSgvM",
- "moduleName": "LinkKit",
- "implicit": true,
- "isOpen": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "linkPersistentID",
- "printedName": "linkPersistentID",
- "children": [
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC16linkPersistentIDSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC16linkPersistentIDSSvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -44051,3462 +41342,639 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit0A7HandlerC16linkPersistentIDSSvg",
- "mangledName": "$s7LinkKit0A7HandlerC16linkPersistentIDSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent",
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "openCallTimestamp",
- "printedName": "openCallTimestamp",
- "children": [
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "AccountSubtype",
+ "printedName": "LinkKit.AccountSubtype",
+ "usr": "s:7LinkKit14AccountSubtypeO"
+ },
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Swift.Double?",
+ "printedName": "LinkKit.VerificationStatus?",
"children": [
{
"kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
+ "name": "VerificationStatus",
+ "printedName": "LinkKit.VerificationStatus",
+ "usr": "s:7LinkKit18VerificationStatusO"
}
],
+ "hasDefaultArg": true,
"usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC17openCallTimestamp33_2F35CE8D0F063DC4E7A32246BB6D8185LLSdSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC17openCallTimestamp33_2F35CE8D0F063DC4E7A32246BB6D8185LLSdSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit7AccountV2id4name4mask7subtype18verificationStatusACSS_S2SSgAA0C7SubtypeOAA012VerificationI0OSgtcfc",
+ "mangledName": "$s7LinkKit7AccountV2id4name4mask7subtype18verificationStatusACSS_S2SSgAA0C7SubtypeOAA012VerificationI0OSgtcfc",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
"AccessControl",
"RawDocComment"
],
- "fixedbinaryorder": 3,
- "hasStorage": true
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "state",
- "printedName": "state",
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(from:)",
"children": [
{
"kind": "TypeNominal",
- "name": "State",
- "printedName": "LinkKit.LinkHandler.State",
- "usr": "s:7LinkKit0A7HandlerC5State33_2F35CE8D0F063DC4E7A32246BB6D8185LLO"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC5state33_2F35CE8D0F063DC4E7A32246BB6D8185LLAC5StateAELLOvp",
- "mangledName": "$s7LinkKit0A7HandlerC5state33_2F35CE8D0F063DC4E7A32246BB6D8185LLAC5StateAELLOvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 4,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "pendingRedirectUri",
- "printedName": "pendingRedirectUri",
- "children": [
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ },
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
+ "name": "Decoder",
+ "printedName": "Swift.Decoder",
+ "usr": "s:s7DecoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC18pendingRedirectUri33_2F35CE8D0F063DC4E7A32246BB6D8185LL10Foundation3URLVSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC18pendingRedirectUri33_2F35CE8D0F063DC4E7A32246BB6D8185LL10Foundation3URLVSgvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit7AccountV4fromACs7Decoder_p_tKcfc",
+ "mangledName": "$s7LinkKit7AccountV4fromACs7Decoder_p_tKcfc",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 5,
- "hasStorage": true
+ "implicit": true,
+ "throwing": true,
+ "init_kind": "Designated"
},
{
- "kind": "Var",
- "name": "configuration",
- "printedName": "configuration",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Configuration",
- "printedName": "LinkKit.Configuration",
- "usr": "s:7LinkKit13ConfigurationO"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC13configuration33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA13ConfigurationOvp",
- "mangledName": "$s7LinkKit0A7HandlerC13configuration33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA13ConfigurationOvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7AccountV6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit7AccountV6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 6,
- "isLet": true,
- "hasStorage": true
+ "implicit": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "log",
- "printedName": "log",
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Account",
+ "printedName": "LinkKit.Account",
+ "usr": "s:7LinkKit7AccountV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC3log33_2F35CE8D0F063DC4E7A32246BB6D8185LL3LogAFVvp",
- "mangledName": "$s7LinkKit0A7HandlerC3log33_2F35CE8D0F063DC4E7A32246BB6D8185LL3LogAFVvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit7AccountV2eeoiySbAC_ACtFZ",
+ "mangledName": "$s7LinkKit7AccountV2eeoiySbAC_ACtFZ",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 7,
- "isLet": true,
- "hasStorage": true
+ "static": true,
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Var",
- "name": "keyValueService",
- "printedName": "keyValueService",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "KeyValueStoreService",
- "printedName": "LinkKit.KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP"
+ "name": "PLKAccount",
+ "printedName": "LinkKit.PLKAccount",
+ "usr": "c:objc(cs)PLKAccount"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC15keyValueService33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA03Keye5StoreF0_pvp",
- "mangledName": "$s7LinkKit0A7HandlerC15keyValueService33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA03Keye5StoreF0_pvp",
+ "usr": "s:7LinkKit7AccountV6toObjCSo10PLKAccountCvp",
+ "mangledName": "$s7LinkKit7AccountV6toObjCSo10PLKAccountCvp",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 8,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "session",
- "printedName": "session",
- "children": [
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Workflow.Session?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Session",
- "printedName": "Workflow.Session",
- "usr": "s:8Workflow7SessionC"
+ "name": "PLKAccount",
+ "printedName": "LinkKit.PLKAccount",
+ "usr": "c:objc(cs)PLKAccount"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit7AccountV6toObjCSo10PLKAccountCvg",
+ "mangledName": "$s7LinkKit7AccountV6toObjCSo10PLKAccountCvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC7session33_2F35CE8D0F063DC4E7A32246BB6D8185LL8Workflow7SessionCSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC7session33_2F35CE8D0F063DC4E7A32246BB6D8185LL8Workflow7SessionCSgvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 9,
- "hasStorage": true
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit7AccountV",
+ "mangledName": "$s7LinkKit7AccountV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
},
{
- "kind": "Var",
- "name": "sdkInfo",
- "printedName": "sdkInfo",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SDKInfoProvider",
- "printedName": "LinkKit.SDKInfoProvider",
- "usr": "s:7LinkKit15SDKInfoProviderV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC7sdkInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA15SDKInfoProviderVvp",
- "mangledName": "$s7LinkKit0A7HandlerC7sdkInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA15SDKInfoProviderVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 10,
- "isLet": true,
- "hasStorage": true
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
},
{
- "kind": "Var",
- "name": "deviceInfo",
- "printedName": "deviceInfo",
+ "kind": "Conformance",
+ "name": "InternalEquatable",
+ "printedName": "InternalEquatable",
+ "usr": "s:7LinkKit17InternalEquatableP",
+ "mangledName": "$s7LinkKit17InternalEquatableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InternalExpressibleByStringLiteral",
+ "printedName": "InternalExpressibleByStringLiteral",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(stringLiteral:)",
"children": [
{
"kind": "TypeNominal",
- "name": "DeviceInfoProvider",
- "printedName": "LinkKit.DeviceInfoProvider",
- "usr": "s:7LinkKit18DeviceInfoProviderV"
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC10deviceInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06DeviceE8ProviderVvp",
- "mangledName": "$s7LinkKit0A7HandlerC10deviceInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06DeviceE8ProviderVvp",
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP06stringG0xSS_tcfc",
+ "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP06stringG0xSS_tcfc",
"moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 11,
- "isLet": true,
- "hasStorage": true
- },
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalExpressibleByStringLiteral>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP",
+ "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InternalStringRepresentable",
+ "printedName": "InternalStringRepresentable",
+ "children": [
{
- "kind": "Var",
- "name": "localeInfo",
- "printedName": "localeInfo",
+ "kind": "Function",
+ "name": "encode",
+ "printedName": "encode(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LocaleInfoProvider",
- "printedName": "LinkKit.LocaleInfoProvider",
- "usr": "s:7LinkKit18LocaleInfoProviderV"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoder",
+ "printedName": "Swift.Encoder",
+ "usr": "s:s7EncoderP"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC10localeInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06LocaleE8ProviderVvp",
- "mangledName": "$s7LinkKit0A7HandlerC10localeInfo33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA06LocaleE8ProviderVvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit27InternalStringRepresentablePAAE6encode2toys7Encoder_p_tKF",
+ "mangledName": "$s7LinkKit27InternalStringRepresentablePAAE6encode2toys7Encoder_p_tKF",
"moduleName": "LinkKit",
- "isInternal": true,
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalStringRepresentable>",
+ "sugared_genericSig": "",
"declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 12,
- "isLet": true,
- "hasStorage": true
+ "isFromExtension": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit27InternalStringRepresentableP",
+ "mangledName": "$s7LinkKit27InternalStringRepresentableP",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 : LinkKit.InternalExpressibleByStringLiteral, τ_0_0 : Swift.CustomStringConvertible>",
+ "sugared_genericSig": "",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
},
{
- "kind": "Var",
- "name": "userAgentProvider",
- "printedName": "userAgentProvider",
+ "kind": "Conformance",
+ "name": "InternalExpressibleByStringLiteral",
+ "printedName": "InternalExpressibleByStringLiteral",
+ "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP",
+ "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Component",
+ "printedName": "Component",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "asset",
+ "printedName": "asset(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkHTTPServiceUserAgentProvider",
- "printedName": "LinkKit.LinkHTTPServiceUserAgentProvider",
- "usr": "s:7LinkKit0A28HTTPServiceUserAgentProviderC"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC17userAgentProvider33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0a15HTTPServiceUsereF0Cvp",
- "mangledName": "$s7LinkKit0A7HandlerC17userAgentProvider33_2F35CE8D0F063DC4E7A32246BB6D8185LLAA0a15HTTPServiceUsereF0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 13,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "paneViewModelObserver",
- "printedName": "paneViewModelObserver",
- "children": [
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "AppCore.Observer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Observer",
- "printedName": "AppCore.Observer",
- "usr": "s:7AppCore8ObserverC"
- }
- ],
- "usr": "s:Sq"
+ "name": "Asset",
+ "printedName": "Threads.Asset",
+ "usr": "s:7Threads5AssetO"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC21paneViewModelObserver33_2F35CE8D0F063DC4E7A32246BB6D8185LL7AppCore0G0CSgvp",
- "mangledName": "$s7LinkKit0A7HandlerC21paneViewModelObserver33_2F35CE8D0F063DC4E7A32246BB6D8185LL7AppCore0G0CSgvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV5assetyAC7Threads5AssetOFZ",
+ "mangledName": "$s7LinkKit9ComponentV5assetyAC7Threads5AssetOFZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
- "fixedbinaryorder": 14,
- "hasStorage": true
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "institutionID",
- "printedName": "institutionID",
+ "kind": "Function",
+ "name": "header",
+ "printedName": "header(_:_:_:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TextKind",
+ "printedName": "Threads.TextKind",
+ "hasDefaultArg": true,
+ "usr": "s:7Threads8TextKindO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSTextAlignment",
+ "printedName": "UIKit.NSTextAlignment",
+ "hasDefaultArg": true,
+ "usr": "c:@E@NSTextAlignment"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC13institutionID33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC13institutionID33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV6headeryACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
+ "mangledName": "$s7LinkKit9ComponentV6headeryACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 15,
- "hasStorage": true
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "institutionIDOptionKey",
- "printedName": "institutionIDOptionKey",
+ "kind": "Function",
+ "name": "body",
+ "printedName": "body(_:_:_:)",
"children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TextKind",
+ "printedName": "Threads.TextKind",
+ "hasDefaultArg": true,
+ "usr": "s:7Threads8TextKindO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSTextAlignment",
+ "printedName": "UIKit.NSTextAlignment",
+ "hasDefaultArg": true,
+ "usr": "c:@E@NSTextAlignment"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC22institutionIDOptionKey33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC22institutionIDOptionKey33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV4bodyyACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
+ "mangledName": "$s7LinkKit9ComponentV4bodyyACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 16,
- "isLet": true,
- "hasStorage": true
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "selectAccount",
- "printedName": "selectAccount",
+ "kind": "Function",
+ "name": "button",
+ "printedName": "button(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ButtonViewModel",
+ "printedName": "Threads.ButtonViewModel",
+ "usr": "s:7Threads15ButtonViewModelV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC13selectAccount33_2F35CE8D0F063DC4E7A32246BB6D8185LLSbvp",
- "mangledName": "$s7LinkKit0A7HandlerC13selectAccount33_2F35CE8D0F063DC4E7A32246BB6D8185LLSbvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV6buttonyAC7Threads15ButtonViewModelVFZ",
+ "mangledName": "$s7LinkKit9ComponentV6buttonyAC7Threads15ButtonViewModelVFZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 17,
- "hasStorage": true
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "selectAccountOptionKey",
- "printedName": "selectAccountOptionKey",
+ "kind": "Function",
+ "name": "textInput",
+ "printedName": "textInput(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "TextInputViewModel",
+ "printedName": "Threads.TextInputViewModel",
+ "usr": "s:7Threads18TextInputViewModelC"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit0A7HandlerC22selectAccountOptionKey33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
- "mangledName": "$s7LinkKit0A7HandlerC22selectAccountOptionKey33_2F35CE8D0F063DC4E7A32246BB6D8185LLSSvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV9textInputyAC7Threads04TextE9ViewModelCFZ",
+ "mangledName": "$s7LinkKit9ComponentV9textInputyAC7Threads04TextE9ViewModelCFZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 18,
- "isLet": true,
- "hasStorage": true
- }
- ],
- "declKind": "Class",
- "usr": "s:7LinkKit0A7HandlerC",
- "mangledName": "$s7LinkKit0A7HandlerC",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Handler",
- "printedName": "Handler",
- "usr": "s:7LinkKit7HandlerP",
- "mangledName": "$s7LinkKit7HandlerP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "KeyValueStoreKey",
- "printedName": "KeyValueStoreKey",
- "children": [
+ "funcSelfKind": "NonMutating"
+ },
{
- "kind": "Var",
- "name": "linkPersistentID",
- "printedName": "linkPersistentID",
+ "kind": "Function",
+ "name": "stack",
+ "printedName": "stack(_:)",
"children": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.KeyValueStoreKey.Type) -> LinkKit.KeyValueStoreKey",
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[LinkKit.Component]",
"children": [
{
"kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.KeyValueStoreKey.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ]
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
}
- ]
+ ],
+ "usr": "s:Sa"
}
],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit013KeyValueStoreC0O16linkPersistentIDyA2CmF",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O16linkPersistentIDyA2CmF",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV5stackyACSayACGFZ",
+ "mangledName": "$s7LinkKit9ComponentV5stackyACSayACGFZ",
"moduleName": "LinkKit",
- "fixedbinaryorder": 0
+ "static": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
+ "kind": "Function",
+ "name": "spaceAbove",
+ "printedName": "spaceAbove(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.KeyValueStoreKey?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "usr": "s:Sq"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
},
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "CGFloat",
+ "printedName": "CoreGraphics.CGFloat",
+ "usr": "s:14CoreFoundation7CGFloatV"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0ACSgSS_tcfc",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0ACSgSS_tcfc",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV10spaceAboveyAC14CoreFoundation7CGFloatVF",
+ "mangledName": "$s7LinkKit9ComponentV10spaceAboveyAC12CoreGraphics7CGFloatVF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
+ "kind": "Function",
+ "name": "spaceBelow",
+ "printedName": "spaceBelow(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CGFloat",
+ "printedName": "CoreGraphics.CGFloat",
+ "usr": "s:14CoreFoundation7CGFloatV"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0SSvp",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0SSvp",
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV10spaceBelowyAC14CoreFoundation7CGFloatVF",
+ "mangledName": "$s7LinkKit9ComponentV10spaceBelowyAC12CoreGraphics7CGFloatVF",
"moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit013KeyValueStoreC0O03rawD0SSvg",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O03rawD0SSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit013KeyValueStoreC0O",
- "mangledName": "$s7LinkKit013KeyValueStoreC0O",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "enumRawTypeName": "String",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
+ "kind": "Function",
+ "name": "margin",
+ "printedName": "margin(_:)",
"children": [
{
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
+ "kind": "TypeNominal",
+ "name": "Component",
+ "printedName": "LinkKit.Component",
+ "usr": "s:7LinkKit9ComponentV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UIEdgeInsets",
+ "printedName": "UIKit.UIEdgeInsets",
+ "usr": "c:@S@UIEdgeInsets"
}
],
- "usr": "s:SY",
- "mangledName": "$sSY"
+ "declKind": "Func",
+ "usr": "s:7LinkKit9ComponentV6marginyACSo12UIEdgeInsetsVF",
+ "mangledName": "$s7LinkKit9ComponentV6marginyACSo12UIEdgeInsetsVF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "KeyValueStoreService",
- "printedName": "KeyValueStoreService",
- "children": [
{
"kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit20KeyValueStoreServiceP6string3forSSSgAA0cdeC0O_tF",
- "mangledName": "$s7LinkKit20KeyValueStoreServiceP6string3forSSSgAA0cdeC0O_tF",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.KeyValueStoreService>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "set",
- "printedName": "set(_:for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit20KeyValueStoreServiceP3set_3forySS_AA0cdeC0OtF",
- "mangledName": "$s7LinkKit20KeyValueStoreServiceP3set_3forySS_AA0cdeC0OtF",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.KeyValueStoreService>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit20KeyValueStoreServiceP",
- "mangledName": "$s7LinkKit20KeyValueStoreServiceP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UserDefaultsService",
- "printedName": "UserDefaultsService",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(defaults:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UserDefaultsService",
- "printedName": "LinkKit.UserDefaultsService",
- "usr": "s:7LinkKit19UserDefaultsServiceV"
- },
- {
- "kind": "TypeNominal",
- "name": "UserDefaults",
- "printedName": "Foundation.UserDefaults",
- "hasDefaultArg": true,
- "usr": "c:objc(cs)NSUserDefaults"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit19UserDefaultsServiceV8defaultsACSo06NSUserD0C_tcfc",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV8defaultsACSo06NSUserD0C_tcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "defaults",
- "printedName": "defaults",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UserDefaults",
- "printedName": "Foundation.UserDefaults",
- "usr": "c:objc(cs)NSUserDefaults"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit19UserDefaultsServiceV8defaults33_A39322CDD144454DFDEA5686E47673A8LLSo06NSUserD0Cvp",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV8defaults33_A39322CDD144454DFDEA5686E47673A8LLSo06NSUserD0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit19UserDefaultsServiceV6string3forSSSgAA013KeyValueStoreH0O_tF",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV6string3forSSSgAA013KeyValueStoreH0O_tF",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "set",
- "printedName": "set(_:for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "KeyValueStoreKey",
- "printedName": "LinkKit.KeyValueStoreKey",
- "usr": "s:7LinkKit013KeyValueStoreC0O"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit19UserDefaultsServiceV3set_3forySS_AA013KeyValueStoreH0OtF",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV3set_3forySS_AA013KeyValueStoreH0OtF",
- "moduleName": "LinkKit",
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit19UserDefaultsServiceV",
- "mangledName": "$s7LinkKit19UserDefaultsServiceV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "KeyValueStoreService",
- "printedName": "KeyValueStoreService",
- "usr": "s:7LinkKit20KeyValueStoreServiceP",
- "mangledName": "$s7LinkKit20KeyValueStoreServiceP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "children": [
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit17InternalEquatableP2eeoiySbx_xtFZ",
- "mangledName": "$s7LinkKit17InternalEquatableP2eeoiySbx_xtFZ",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalEquatable>",
- "sugared_genericSig": "",
- "static": true,
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SDKValidationService",
- "printedName": "SDKValidationService",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(sdkReleaseLoader:log:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SDKValidationService",
- "printedName": "LinkKit.SDKValidationService",
- "usr": "s:7LinkKit20SDKValidationServiceC"
- },
- {
- "kind": "TypeNominal",
- "name": "SDKReleaseLoader",
- "printedName": "LinkKit.SDKReleaseLoader",
- "usr": "s:7LinkKit16SDKReleaseLoaderP"
- },
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit20SDKValidationServiceC16sdkReleaseLoader3logAcA010SDKReleaseG0_p_3LogAGVtcfc",
- "mangledName": "$s7LinkKit20SDKValidationServiceC16sdkReleaseLoader3logAcA010SDKReleaseG0_p_3LogAGVtcfc",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "validateIntegration",
- "printedName": "validateIntegration()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit20SDKValidationServiceC19validateIntegrationyyF",
- "mangledName": "$s7LinkKit20SDKValidationServiceC19validateIntegrationyyF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "sdkReleaseLoader",
- "printedName": "sdkReleaseLoader",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SDKReleaseLoader",
- "printedName": "LinkKit.SDKReleaseLoader",
- "usr": "s:7LinkKit16SDKReleaseLoaderP"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20SDKValidationServiceC16sdkReleaseLoader33_DAB7F5C045708C32FAC47CA6EAB369F7LLAA010SDKReleaseG0_pvp",
- "mangledName": "$s7LinkKit20SDKValidationServiceC16sdkReleaseLoader33_DAB7F5C045708C32FAC47CA6EAB369F7LLAA010SDKReleaseG0_pvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "log",
- "printedName": "log",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit20SDKValidationServiceC3log33_DAB7F5C045708C32FAC47CA6EAB369F7LL3LogAFVvp",
- "mangledName": "$s7LinkKit20SDKValidationServiceC3log33_DAB7F5C045708C32FAC47CA6EAB369F7LL3LogAFVvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
- }
- ],
- "declKind": "Class",
- "usr": "s:7LinkKit20SDKValidationServiceC",
- "mangledName": "$s7LinkKit20SDKValidationServiceC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "AccessControl"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "WorkflowProto",
- "printedName": "WorkflowProto",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "Constants",
- "printedName": "Constants",
- "children": [
- {
- "kind": "Var",
- "name": "linkWebviewFallbackScheme",
- "printedName": "linkWebviewFallbackScheme",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.Constants.Type) -> LinkKit.Constants",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Constants",
- "printedName": "LinkKit.Constants",
- "usr": "s:7LinkKit9ConstantsO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.Constants.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Constants",
- "printedName": "LinkKit.Constants",
- "usr": "s:7LinkKit9ConstantsO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit9ConstantsO25linkWebviewFallbackSchemeyA2CmF",
- "mangledName": "$s7LinkKit9ConstantsO25linkWebviewFallbackSchemeyA2CmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.Constants?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Constants",
- "printedName": "LinkKit.Constants",
- "usr": "s:7LinkKit9ConstantsO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit9ConstantsO8rawValueACSgSS_tcfc",
- "mangledName": "$s7LinkKit9ConstantsO8rawValueACSgSS_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit9ConstantsO8rawValueSSvp",
- "mangledName": "$s7LinkKit9ConstantsO8rawValueSSvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit9ConstantsO8rawValueSSvg",
- "mangledName": "$s7LinkKit9ConstantsO8rawValueSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit9ConstantsO",
- "mangledName": "$s7LinkKit9ConstantsO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "enumRawTypeName": "String",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "PLKPlaid",
- "printedName": "PLKPlaid",
- "children": [
- {
- "kind": "Function",
- "name": "createWithLinkTokenConfiguration",
- "printedName": "createWithLinkTokenConfiguration(_:error:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKHandler?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKHandler",
- "printedName": "LinkKit.PLKHandler",
- "usr": "c:objc(pl)PLKHandler"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "PLKLinkTokenConfiguration",
- "printedName": "LinkKit.PLKLinkTokenConfiguration",
- "usr": "c:objc(cs)PLKLinkTokenConfiguration"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.AutoreleasingUnsafeMutablePointer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AutoreleasingUnsafeMutablePointer",
- "printedName": "Swift.AutoreleasingUnsafeMutablePointer",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "usr": "s:SA"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)createWithLinkTokenConfiguration:error:",
- "mangledName": "$s7LinkKit8PLKPlaidC010createWithA18TokenConfiguration_5errorSo10PLKHandler_pSgSo07PLKLinkfG0C_SAySo7NSErrorCSgGSgtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "createWithLinkPublicKeyConfiguration",
- "printedName": "createWithLinkPublicKeyConfiguration(_:error:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKHandler?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKHandler",
- "printedName": "LinkKit.PLKHandler",
- "usr": "c:objc(pl)PLKHandler"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "PLKLinkPublicKeyConfiguration",
- "printedName": "LinkKit.PLKLinkPublicKeyConfiguration",
- "usr": "c:objc(cs)PLKLinkPublicKeyConfiguration"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.AutoreleasingUnsafeMutablePointer?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AutoreleasingUnsafeMutablePointer",
- "printedName": "Swift.AutoreleasingUnsafeMutablePointer",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "usr": "s:SA"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)createWithLinkPublicKeyConfiguration:error:",
- "mangledName": "$s7LinkKit8PLKPlaidC010createWithA22PublicKeyConfiguration_5errorSo10PLKHandler_pSgSo07PLKLinkfgH0C_SAySo7NSErrorCSgGSgtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "sdkVersion",
- "printedName": "sdkVersion",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cpy)sdkVersion",
- "mangledName": "$s7LinkKit8PLKPlaidC10sdkVersionSSvpZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(cm)sdkVersion",
- "mangledName": "$s7LinkKit8PLKPlaidC10sdkVersionSSvgZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaid",
- "printedName": "LinkKit.PLKPlaid",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid(im)init",
- "mangledName": "$s7LinkKit8PLKPlaidCACycfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)PLKPlaid",
- "mangledName": "$s7LinkKit8PLKPlaidC",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PLKPlaidConfigurationError",
- "printedName": "PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "Var",
- "name": "malformedClientID",
- "printedName": "malformedClientID",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorMalformedClientID",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO17malformedClientIDyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "missingAuthorization",
- "printedName": "missingAuthorization",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorMissingAuthorization",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO20missingAuthorizationyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "noProduct",
- "printedName": "noProduct",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorNoProduct",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO9noProductyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "invalidOptionValue",
- "printedName": "invalidOptionValue",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidOptionValue",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO18invalidOptionValueyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 3
- },
- {
- "kind": "Var",
- "name": "invalidOptionCombination",
- "printedName": "invalidOptionCombination",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidOptionCombination",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO24invalidOptionCombinationyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 4
- },
- {
- "kind": "Var",
- "name": "invalidEnvironmentValue",
- "printedName": "invalidEnvironmentValue",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidEnvironmentValue",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO23invalidEnvironmentValueyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 5
- },
- {
- "kind": "Var",
- "name": "invalidToken",
- "printedName": "invalidToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.PLKPlaidConfigurationError.Type) -> LinkKit.PLKPlaidConfigurationError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.PLKPlaidConfigurationError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError@PLKPlaidConfigurationErrorInvalidToken",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO12invalidTokenyA2CmF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "fixedbinaryorder": 6
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.PLKPlaidConfigurationError?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKPlaidConfigurationError",
- "printedName": "LinkKit.PLKPlaidConfigurationError",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueACSgSi_tcfc",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueACSgSi_tcfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivp",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivp",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivg",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO8rawValueSivg",
- "moduleName": "LinkKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@M@LinkKit@E@PLKPlaidConfigurationError",
- "mangledName": "$s7LinkKit26PLKPlaidConfigurationErrorO",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ObjC"
- ],
- "enumRawTypeName": "Int",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PLKHandlerShim",
- "printedName": "PLKHandlerShim",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(handler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKHandlerShim",
- "printedName": "LinkKit.PLKHandlerShim",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim"
- },
- {
- "kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit14PLKHandlerShimC7handlerAcA7Handler_p_tcfc",
- "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAcA7Handler_p_tcfc",
- "moduleName": "LinkKit",
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "handler",
- "printedName": "handler",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvp",
- "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Final",
- "HasStorage"
- ],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvg",
- "mangledName": "$s7LinkKit14PLKHandlerShimC7handlerAA7Handler_pvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentationHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandleryySo16UIViewControllerCc_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithPresentationHandler:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentationHandler:dismissalHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:dismissalHandler:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandler09dismissalG0yySo16UIViewControllerCc_yAHctF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithPresentationHandler:dismissalHandler:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(withContextViewController:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithContextViewController:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open25withContextViewControllerySo06UIViewI0C_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithContextViewController:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentationHandler:options:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:options:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandler7optionsyySo16UIViewControllerCc_SDyS2SGtF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithPresentationHandler:options:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(presentationHandler:dismissalHandler:options:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithPresentationHandler:dismissalHandler:options:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open19presentationHandler09dismissalG07optionsyySo16UIViewControllerCc_yAIcSDyS2SGtF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithPresentationHandler:dismissalHandler:options:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(withContextViewController:options:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)openWithContextViewController:options:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC4open25withContextViewController7optionsySo06UIViewI0C_SDyS2SGtF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "openWithContextViewController:options:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "createEmbeddedView",
- "printedName": "createEmbeddedView(_:errorCompletion:successCompletion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Error) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIView) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)createEmbeddedView:errorCompletion:successCompletion:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC18createEmbeddedView_15errorCompletion07successI0ySo16UIViewControllerC_ys5Error_pcySo0K0CctF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "createEmbeddedView:errorCompletion:successCompletion:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "createEmbeddedView",
- "printedName": "createEmbeddedView(_:dismissalHandler:errorCompletion:successCompletion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIViewController) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Error) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIView) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)createEmbeddedView:dismissalHandler:errorCompletion:successCompletion:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC18createEmbeddedView_16dismissalHandler15errorCompletion07successK0yySo16UIViewControllerCc_yAIcys5Error_pcySo0M0CctF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "createEmbeddedView:dismissalHandler:errorCompletion:successCompletion:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continue",
- "printedName": "continue(fromRedirectUri:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Error?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)continueFromRedirectUri:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC8continue15fromRedirectUris5Error_pSg10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "continueFromRedirectUri:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continue",
- "printedName": "continue(withRedirectUri:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)continueWithRedirectUri:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC8continue15withRedirectUriy10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "continueWithRedirectUri:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "resume",
- "printedName": "resume(afterTermination:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)resumeAfterTermination:",
- "mangledName": "$s7LinkKit14PLKHandlerShimC6resume16afterTerminationy10Foundation3URLV_tF",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "resumeAfterTermination:",
- "declAttributes": [
- "ObjC"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "PLKHandlerShim",
- "printedName": "LinkKit.PLKHandlerShim",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim(im)init",
- "mangledName": "$s7LinkKit14PLKHandlerShimCACycfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)PLKHandlerShim",
- "mangledName": "$s7LinkKit14PLKHandlerShimC",
- "moduleName": "LinkKit",
- "isOpen": true,
- "declAttributes": [
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "superclassNames": [
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ExitErrorRawCode",
- "printedName": "ExitErrorRawCode",
- "children": [
- {
- "kind": "Var",
- "name": "int",
- "printedName": "int",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.Int) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Int) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorRawCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit16ExitErrorRawCodeO3intyACSicACmF",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO3intyACSicACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "string",
- "printedName": "string",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.String) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorRawCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit16ExitErrorRawCodeO6stringyACSScACmF",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO6stringyACSScACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "unknownTypeAndCode",
- "printedName": "unknownTypeAndCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(LinkKit.ExitErrorRawCode.Type) -> (Swift.String, Swift.String) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> LinkKit.ExitErrorRawCode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(type: Swift.String, code: Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "LinkKit.ExitErrorRawCode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:7LinkKit16ExitErrorRawCodeO014unknownTypeAndF0yACSS_SStcACmF",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO014unknownTypeAndF0yACSS_SStcACmF",
- "moduleName": "LinkKit",
- "fixedbinaryorder": 2
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- },
- {
- "kind": "TypeNominal",
- "name": "ExitErrorRawCode",
- "printedName": "LinkKit.ExitErrorRawCode",
- "usr": "s:7LinkKit16ExitErrorRawCodeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit16ExitErrorRawCodeO2eeoiySbAC_ACtFZ",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO2eeoiySbAC_ACtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:7LinkKit16ExitErrorRawCodeO",
- "mangledName": "$s7LinkKit16ExitErrorRawCodeO",
- "moduleName": "LinkKit",
- "isEnumExhaustive": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "InternalEquatable",
- "printedName": "InternalEquatable",
- "usr": "s:7LinkKit17InternalEquatableP",
- "mangledName": "$s7LinkKit17InternalEquatableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InternalExpressibleByStringLiteral",
- "printedName": "InternalExpressibleByStringLiteral",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringLiteral:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP06stringG0xSS_tcfc",
- "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP06stringG0xSS_tcfc",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalExpressibleByStringLiteral>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP",
- "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP",
- "moduleName": "LinkKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InternalStringRepresentable",
- "printedName": "InternalStringRepresentable",
- "children": [
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit27InternalStringRepresentablePAAE6encode2toys7Encoder_p_tKF",
- "mangledName": "$s7LinkKit27InternalStringRepresentablePAAE6encode2toys7Encoder_p_tKF",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.InternalStringRepresentable>",
- "sugared_genericSig": "",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:7LinkKit27InternalStringRepresentableP",
- "mangledName": "$s7LinkKit27InternalStringRepresentableP",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 : LinkKit.InternalExpressibleByStringLiteral, τ_0_0 : Swift.CustomStringConvertible>",
- "sugared_genericSig": "",
- "conformances": [
- {
- "kind": "Conformance",
- "name": "InternalExpressibleByStringLiteral",
- "printedName": "InternalExpressibleByStringLiteral",
- "usr": "s:7LinkKit34InternalExpressibleByStringLiteralP",
- "mangledName": "$s7LinkKit34InternalExpressibleByStringLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "Component",
- "printedName": "Component",
- "children": [
- {
- "kind": "Function",
- "name": "asset",
- "printedName": "asset(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "Asset",
- "printedName": "Threads.Asset",
- "usr": "s:7Threads5AssetO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV5assetyAC7Threads5AssetOFZ",
- "mangledName": "$s7LinkKit9ComponentV5assetyAC7Threads5AssetOFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "header",
- "printedName": "header(_:_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "TextKind",
- "printedName": "Threads.TextKind",
- "hasDefaultArg": true,
- "usr": "s:7Threads8TextKindO"
- },
- {
- "kind": "TypeNominal",
- "name": "NSTextAlignment",
- "printedName": "UIKit.NSTextAlignment",
- "hasDefaultArg": true,
- "usr": "c:@E@NSTextAlignment"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV6headeryACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
- "mangledName": "$s7LinkKit9ComponentV6headeryACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "body",
- "printedName": "body(_:_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "TextKind",
- "printedName": "Threads.TextKind",
- "hasDefaultArg": true,
- "usr": "s:7Threads8TextKindO"
- },
- {
- "kind": "TypeNominal",
- "name": "NSTextAlignment",
- "printedName": "UIKit.NSTextAlignment",
- "hasDefaultArg": true,
- "usr": "c:@E@NSTextAlignment"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV4bodyyACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
- "mangledName": "$s7LinkKit9ComponentV4bodyyACSS_7Threads8TextKindOSo15NSTextAlignmentVtFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "button",
- "printedName": "button(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "ButtonViewModel",
- "printedName": "Threads.ButtonViewModel",
- "usr": "s:7Threads15ButtonViewModelV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV6buttonyAC7Threads15ButtonViewModelVFZ",
- "mangledName": "$s7LinkKit9ComponentV6buttonyAC7Threads15ButtonViewModelVFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "textInput",
- "printedName": "textInput(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "TextInputViewModel",
- "printedName": "Threads.TextInputViewModel",
- "usr": "s:7Threads18TextInputViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV9textInputyAC7Threads04TextE9ViewModelCFZ",
- "mangledName": "$s7LinkKit9ComponentV9textInputyAC7Threads04TextE9ViewModelCFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "stack",
- "printedName": "stack(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[LinkKit.Component]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV5stackyACSayACGFZ",
- "mangledName": "$s7LinkKit9ComponentV5stackyACSayACGFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "spaceAbove",
- "printedName": "spaceAbove(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:12CoreGraphics7CGFloatV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV10spaceAboveyAC12CoreGraphics7CGFloatVF",
- "mangledName": "$s7LinkKit9ComponentV10spaceAboveyAC12CoreGraphics7CGFloatVF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "spaceBelow",
- "printedName": "spaceBelow(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:12CoreGraphics7CGFloatV"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV10spaceBelowyAC12CoreGraphics7CGFloatVF",
- "mangledName": "$s7LinkKit9ComponentV10spaceBelowyAC12CoreGraphics7CGFloatVF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "margin",
- "printedName": "margin(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Component",
- "printedName": "LinkKit.Component",
- "usr": "s:7LinkKit9ComponentV"
- },
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit9ComponentV6marginyACSo12UIEdgeInsetsVF",
- "mangledName": "$s7LinkKit9ComponentV6marginyACSo12UIEdgeInsetsVF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "show",
- "printedName": "show(in:)",
+ "name": "show",
+ "printedName": "show(in:)",
"children": [
{
"kind": "TypeNominal",
@@ -47609,7 +42077,7 @@
"kind": "TypeNominal",
"name": "CGFloat",
"printedName": "CoreGraphics.CGFloat",
- "usr": "s:12CoreGraphics7CGFloatV"
+ "usr": "s:14CoreFoundation7CGFloatV"
}
]
},
@@ -47630,7 +42098,7 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO5exactyAG12CoreGraphics7CGFloatVcAGmF",
+ "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO5exactyAG14CoreFoundation7CGFloatVcAGmF",
"mangledName": "$s7LinkKit9ComponentV6LayoutV19HorizontalDimensionO5exactyAG12CoreGraphics7CGFloatVcAGmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 0
@@ -47665,13 +42133,13 @@
"kind": "TypeNominal",
"name": "CGFloat",
"printedName": "CoreGraphics.CGFloat",
- "usr": "s:12CoreGraphics7CGFloatV"
+ "usr": "s:14CoreFoundation7CGFloatV"
},
{
"kind": "TypeNominal",
"name": "CGFloat",
"printedName": "CoreGraphics.CGFloat",
- "usr": "s:12CoreGraphics7CGFloatV"
+ "usr": "s:14CoreFoundation7CGFloatV"
}
]
}
@@ -47694,7 +42162,7 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO4fillyAG12CoreGraphics7CGFloatV_AKtcAGmF",
+ "usr": "s:7LinkKit9ComponentV6LayoutV19HorizontalDimensionO4fillyAG14CoreFoundation7CGFloatV_AKtcAGmF",
"mangledName": "$s7LinkKit9ComponentV6LayoutV19HorizontalDimensionO4fillyAG12CoreGraphics7CGFloatV_AKtcAGmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 1
@@ -47787,7 +42255,7 @@
"kind": "TypeNominal",
"name": "CGFloat",
"printedName": "CoreGraphics.CGFloat",
- "usr": "s:12CoreGraphics7CGFloatV"
+ "usr": "s:14CoreFoundation7CGFloatV"
}
]
},
@@ -47808,7 +42276,7 @@
}
],
"declKind": "EnumElement",
- "usr": "s:7LinkKit9ComponentV6LayoutV17VerticalDimensionO5exactyAG12CoreGraphics7CGFloatVcAGmF",
+ "usr": "s:7LinkKit9ComponentV6LayoutV17VerticalDimensionO5exactyAG14CoreFoundation7CGFloatVcAGmF",
"mangledName": "$s7LinkKit9ComponentV6LayoutV17VerticalDimensionO5exactyAG12CoreGraphics7CGFloatVcAGmF",
"moduleName": "LinkKit",
"fixedbinaryorder": 0
@@ -48276,402 +42744,337 @@
},
{
"kind": "TypeDecl",
- "name": "ConsentPaneViewController",
- "printedName": "ConsentPaneViewController",
+ "name": "DeviceInfoProvider",
+ "printedName": "DeviceInfoProvider",
"children": [
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(with:)",
+ "kind": "Var",
+ "name": "model",
+ "printedName": "model",
"children": [
{
"kind": "TypeNominal",
- "name": "ConsentPaneViewController",
- "printedName": "LinkKit.ConsentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "ConsentViewModel",
- "printedName": "Workflow.ConsentViewModel",
- "usr": "s:8Workflow16ConsentViewModelC"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC4withAC8Workflow0cE5ModelC_tcfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18DeviceInfoProviderV5modelSSvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV5modelSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
- "children": [
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.ConsentPaneViewController?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ConsentPaneViewController",
- "printedName": "LinkKit.ConsentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV5modelSSvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV5modelSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController(im)initWithCoder:",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC5coderACSgSo7NSCoderC_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required",
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
+ ]
},
{
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
+ "kind": "Var",
+ "name": "systemVersion",
+ "printedName": "systemVersion",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController(im)viewDidLoad",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC11viewDidLoadyyF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit18DeviceInfoProviderV13systemVersionSSvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV13systemVersionSSvp",
"moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV13systemVersionSSvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV13systemVersionSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC13viewDidAppearyySbF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ ]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "machine",
+ "printedName": "machine",
"children": [
{
"kind": "TypeNominal",
- "name": "ConsentViewModel",
- "printedName": "Workflow.ConsentViewModel",
- "usr": "s:8Workflow16ConsentViewModelC"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC9viewModel33_3A2E76AA8A9D2EB797486DDAA7C1D235LL8Workflow0ceH0Cvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC9viewModel33_3A2E76AA8A9D2EB797486DDAA7C1D235LL8Workflow0ceH0Cvp",
+ "usr": "s:7LinkKit18DeviceInfoProviderV7machineSSvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV7machineSSvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
- "Final",
+ "HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
- "fixedbinaryorder": 0,
+ "fixedbinaryorder": 2,
"isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "headerLabel",
- "printedName": "headerLabel",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "UILabel",
- "printedName": "UIKit.UILabel",
- "usr": "c:objc(cs)UILabel"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV7machineSSvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV7machineSSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC11headerLabel33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo7UILabelCvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC11headerLabel33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo7UILabelCvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "sectionsView",
- "printedName": "sectionsView",
+ "name": "contentSizeCategory",
+ "printedName": "contentSizeCategory",
"children": [
{
"kind": "TypeNominal",
- "name": "UIStackView",
- "printedName": "UIKit.UIStackView",
- "usr": "c:objc(cs)UIStackView"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC08sectionsE033_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo07UIStackE0Cvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC08sectionsE033_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo07UIStackE0Cvp",
+ "usr": "s:7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
+ "fixedbinaryorder": 3,
"isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "consentButton",
- "printedName": "consentButton",
+ "name": "screenHeight",
+ "printedName": "screenHeight",
"children": [
{
"kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC13consentButton33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo8UIButtonCvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC13consentButton33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo8UIButtonCvp",
+ "usr": "s:7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 3,
+ "fixedbinaryorder": 4,
"isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "exitButton",
- "printedName": "exitButton",
+ "name": "screenWidth",
+ "printedName": "screenWidth",
"children": [
{
"kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit25ConsentPaneViewControllerC10exitButton33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo8UIButtonCvp",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC10exitButton33_3A2E76AA8A9D2EB797486DDAA7C1D235LLSo8UIButtonCvp",
+ "usr": "s:7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvp",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 4,
+ "fixedbinaryorder": 5,
"isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ConsentPaneViewController",
- "printedName": "LinkKit.ConsentPaneViewController",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController"
- },
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
}
],
- "usr": "s:Sq"
- },
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvg",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
+ "name": "DeviceInfoProvider",
+ "printedName": "LinkKit.DeviceInfoProvider",
+ "usr": "s:7LinkKit18DeviceInfoProviderV"
}
],
"declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "usr": "s:7LinkKit18DeviceInfoProviderVACycfc",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderVACycfc",
"moduleName": "LinkKit",
- "overriding": true,
"implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
"init_kind": "Designated"
}
],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)ConsentPaneViewController",
- "mangledName": "$s7LinkKit25ConsentPaneViewControllerC",
+ "declKind": "Struct",
+ "usr": "s:7LinkKit18DeviceInfoProviderV",
+ "mangledName": "$s7LinkKit18DeviceInfoProviderV",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
+ "AccessControl"
],
"conformances": [
{
"kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "DeviceInfoProviding",
+ "printedName": "DeviceInfoProviding",
+ "usr": "s:8Workflow19DeviceInfoProvidingP",
+ "mangledName": "$s8Workflow19DeviceInfoProvidingP"
},
{
"kind": "Conformance",
@@ -48682,32 +43085,15 @@
}
]
},
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
{
"kind": "TypeDecl",
- "name": "DeviceInfoProvider",
- "printedName": "DeviceInfoProvider",
+ "name": "LocaleInfoProvider",
+ "printedName": "LocaleInfoProvider",
"children": [
{
"kind": "Var",
- "name": "model",
- "printedName": "model",
+ "name": "identifier",
+ "printedName": "identifier",
"children": [
{
"kind": "TypeNominal",
@@ -48717,8 +43103,8 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV5modelSSvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV5modelSSvp",
+ "usr": "s:7LinkKit18LocaleInfoProviderV10identifierSSvp",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV10identifierSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
@@ -48742,8 +43128,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV5modelSSvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV5modelSSvg",
+ "usr": "s:7LinkKit18LocaleInfoProviderV10identifierSSvg",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV10identifierSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48755,8 +43141,187 @@
},
{
"kind": "Var",
- "name": "systemVersion",
- "printedName": "systemVersion",
+ "name": "regionCode",
+ "printedName": "regionCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18LocaleInfoProviderV10regionCodeSSSgvp",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV10regionCodeSSSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 1,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18LocaleInfoProviderV10regionCodeSSSgvg",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV10regionCodeSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "languageCode",
+ "printedName": "languageCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit18LocaleInfoProviderV12languageCodeSSSgvp",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV12languageCodeSSSgvp",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 2,
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18LocaleInfoProviderV12languageCodeSSSgvg",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV12languageCodeSSSgvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LocaleInfoProvider",
+ "printedName": "LinkKit.LocaleInfoProvider",
+ "usr": "s:7LinkKit18LocaleInfoProviderV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit18LocaleInfoProviderVACycfc",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderVACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit18LocaleInfoProviderV",
+ "mangledName": "$s7LinkKit18LocaleInfoProviderV",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "LocaleInfoProviding",
+ "printedName": "LocaleInfoProviding",
+ "usr": "s:8Workflow19LocaleInfoProvidingP",
+ "mangledName": "$s8Workflow19LocaleInfoProvidingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "SDKInfoProvider",
+ "printedName": "SDKInfoProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "name",
+ "printedName": "name",
"children": [
{
"kind": "TypeNominal",
@@ -48766,15 +43331,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV13systemVersionSSvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV13systemVersionSSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV4nameSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV4nameSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 1,
+ "fixedbinaryorder": 0,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -48791,8 +43356,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV13systemVersionSSvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV13systemVersionSSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV4nameSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV4nameSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48804,8 +43369,8 @@
},
{
"kind": "Var",
- "name": "machine",
- "printedName": "machine",
+ "name": "version",
+ "printedName": "version",
"children": [
{
"kind": "TypeNominal",
@@ -48815,15 +43380,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV7machineSSvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV7machineSSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV7versionSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV7versionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
+ "fixedbinaryorder": 1,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -48840,8 +43405,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV7machineSSvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV7machineSSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV7versionSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV7versionSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48853,8 +43418,8 @@
},
{
"kind": "Var",
- "name": "contentSizeCategory",
- "printedName": "contentSizeCategory",
+ "name": "id",
+ "printedName": "id",
"children": [
{
"kind": "TypeNominal",
@@ -48864,15 +43429,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV2idSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV2idSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 3,
+ "fixedbinaryorder": 2,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -48889,8 +43454,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV19contentSizeCategorySSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV2idSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV2idSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48902,26 +43467,26 @@
},
{
"kind": "Var",
- "name": "screenHeight",
- "printedName": "screenHeight",
+ "name": "build",
+ "printedName": "build",
"children": [
{
"kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV5buildSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV5buildSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 4,
+ "fixedbinaryorder": 3,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -48932,14 +43497,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV12screenHeights6UInt32Vvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV5buildSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV5buildSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48951,26 +43516,26 @@
},
{
"kind": "Var",
- "name": "screenWidth",
- "printedName": "screenWidth",
+ "name": "branch",
+ "printedName": "branch",
"children": [
{
"kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvp",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV6branchSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV6branchSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 5,
+ "fixedbinaryorder": 4,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -48981,14 +43546,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvg",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV11screenWidths6UInt32Vvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV6branchSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV6branchSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -48998,59 +43563,10 @@
}
]
},
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DeviceInfoProvider",
- "printedName": "LinkKit.DeviceInfoProvider",
- "usr": "s:7LinkKit18DeviceInfoProviderV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:7LinkKit18DeviceInfoProviderVACycfc",
- "mangledName": "$s7LinkKit18DeviceInfoProviderVACycfc",
- "moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit18DeviceInfoProviderV",
- "mangledName": "$s7LinkKit18DeviceInfoProviderV",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "DeviceInfoProviding",
- "printedName": "DeviceInfoProviding",
- "usr": "s:8Workflow19DeviceInfoProvidingP",
- "mangledName": "$s8Workflow19DeviceInfoProvidingP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LocaleInfoProvider",
- "printedName": "LocaleInfoProvider",
- "children": [
{
"kind": "Var",
- "name": "identifier",
- "printedName": "identifier",
+ "name": "commit",
+ "printedName": "commit",
"children": [
{
"kind": "TypeNominal",
@@ -49060,15 +43576,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18LocaleInfoProviderV10identifierSSvp",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV10identifierSSvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV6commitSSvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV6commitSSvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 0,
+ "fixedbinaryorder": 5,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -49085,8 +43601,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18LocaleInfoProviderV10identifierSSvg",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV10identifierSSvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV6commitSSvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV6commitSSvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -49098,8 +43614,8 @@
},
{
"kind": "Var",
- "name": "regionCode",
- "printedName": "regionCode",
+ "name": "reactNativeSDKVersion",
+ "printedName": "reactNativeSDKVersion",
"children": [
{
"kind": "TypeNominal",
@@ -49117,15 +43633,15 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18LocaleInfoProviderV10regionCodeSSSgvp",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV10regionCodeSSSgvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 1,
+ "fixedbinaryorder": 6,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -49150,8 +43666,8 @@
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18LocaleInfoProviderV10regionCodeSSSgvg",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV10regionCodeSSSgvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -49163,34 +43679,26 @@
},
{
"kind": "Var",
- "name": "languageCode",
- "printedName": "languageCode",
+ "name": "isRunningFlutterSDK",
+ "printedName": "isRunningFlutterSDK",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18LocaleInfoProviderV12languageCodeSSSgvp",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV12languageCodeSSSgvp",
+ "usr": "s:7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvp",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvp",
"moduleName": "LinkKit",
"declAttributes": [
"HasInitialValue",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
+ "fixedbinaryorder": 7,
"isLet": true,
"hasStorage": true,
"accessors": [
@@ -49201,22 +43709,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18LocaleInfoProviderV12languageCodeSSSgvg",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV12languageCodeSSSgvg",
+ "usr": "s:7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvg",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvg",
"moduleName": "LinkKit",
"implicit": true,
"declAttributes": [
@@ -49233,22 +43733,22 @@
"children": [
{
"kind": "TypeNominal",
- "name": "LocaleInfoProvider",
- "printedName": "LinkKit.LocaleInfoProvider",
- "usr": "s:7LinkKit18LocaleInfoProviderV"
+ "name": "SDKInfoProvider",
+ "printedName": "LinkKit.SDKInfoProvider",
+ "usr": "s:7LinkKit15SDKInfoProviderV"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit18LocaleInfoProviderVACycfc",
- "mangledName": "$s7LinkKit18LocaleInfoProviderVACycfc",
+ "usr": "s:7LinkKit15SDKInfoProviderVACycfc",
+ "mangledName": "$s7LinkKit15SDKInfoProviderVACycfc",
"moduleName": "LinkKit",
"implicit": true,
"init_kind": "Designated"
}
],
"declKind": "Struct",
- "usr": "s:7LinkKit18LocaleInfoProviderV",
- "mangledName": "$s7LinkKit18LocaleInfoProviderV",
+ "usr": "s:7LinkKit15SDKInfoProviderV",
+ "mangledName": "$s7LinkKit15SDKInfoProviderV",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
@@ -49256,10 +43756,10 @@
"conformances": [
{
"kind": "Conformance",
- "name": "LocaleInfoProviding",
- "printedName": "LocaleInfoProviding",
- "usr": "s:8Workflow19LocaleInfoProvidingP",
- "mangledName": "$s8Workflow19LocaleInfoProvidingP"
+ "name": "SDKInfoProviding",
+ "printedName": "SDKInfoProviding",
+ "usr": "s:8Workflow16SDKInfoProvidingP",
+ "mangledName": "$s8Workflow16SDKInfoProvidingP"
},
{
"kind": "Conformance",
@@ -49270,187 +43770,490 @@
}
]
},
+ {
+ "kind": "Import",
+ "name": "AppCore",
+ "printedName": "AppCore",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppCoreUI",
+ "printedName": "AppCoreUI",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Log",
+ "printedName": "Log",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Threads",
+ "printedName": "Threads",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "WebKit",
+ "printedName": "WebKit",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "Import",
+ "name": "Workflow",
+ "printedName": "Workflow",
+ "declKind": "Import",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "ImplementationOnly"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AuthenticationServices",
+ "printedName": "AuthenticationServices",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
{
"kind": "TypeDecl",
- "name": "SDKInfoProvider",
- "printedName": "SDKInfoProvider",
+ "name": "InProcessWebviewFallbackController",
+ "printedName": "InProcessWebviewFallbackController",
"children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(viewModel:log:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InProcessWebviewFallbackController",
+ "printedName": "LinkKit.InProcessWebviewFallbackController",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WebViewFallbackViewModel",
+ "printedName": "Workflow.WebViewFallbackViewModel",
+ "usr": "s:8Workflow015WebViewFallbackC5ModelC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9viewModel3logAC8Workflow07WebViewfmI0C_3LogAIVtcfc",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9viewModel3logAC8Workflow07WebViewfmI0C_3LogAIVtcfc",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(coder:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.InProcessWebviewFallbackController?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InProcessWebviewFallbackController",
+ "printedName": "LinkKit.InProcessWebviewFallbackController",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSCoder",
+ "printedName": "Foundation.NSCoder",
+ "usr": "c:objc(cs)NSCoder"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)initWithCoder:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC5coderACSgSo7NSCoderC_tcfc",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "initWithCoder:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Required"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidLoad",
+ "printedName": "viewDidLoad()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)viewDidLoad",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC11viewDidLoadyyF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidLoad",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "viewDidAppear",
+ "printedName": "viewDidAppear(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)viewDidAppear:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC13viewDidAppearyySbF",
+ "moduleName": "LinkKit",
+ "overriding": true,
+ "objc_name": "viewDidAppear:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "Override"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
{
"kind": "Var",
- "name": "name",
- "printedName": "name",
+ "name": "log",
+ "printedName": "log",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Log",
+ "printedName": "Log.Log",
+ "usr": "s:3LogAAV"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV4nameSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV4nameSSvp",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC3log33_32F4DB776C6A6928E36575C991298D05LL3LogAFVvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC3log33_32F4DB776C6A6928E36575C991298D05LL3LogAFVvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 0,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "stackView",
+ "printedName": "stackView",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UIStackView",
+ "printedName": "UIKit.UIStackView",
+ "usr": "c:objc(cs)UIStackView"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9stackView33_32F4DB776C6A6928E36575C991298D05LLSo07UIStackI0Cvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9stackView33_32F4DB776C6A6928E36575C991298D05LLSo07UIStackI0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 0,
+ "fixedbinaryorder": 1,
"isLet": true,
- "hasStorage": true,
- "accessors": [
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "webView",
+ "printedName": "webView",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC7webView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebI0Cvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebI0Cvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 2,
+ "isLet": true,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "popupWebView",
+ "printedName": "popupWebView",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "WebKit.WKWebView?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV4nameSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV4nameSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC12popupWebView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebJ0CSgvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC12popupWebView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebJ0CSgvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "fixedbinaryorder": 3,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "version",
- "printedName": "version",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "WebViewFallbackViewModel",
+ "printedName": "Workflow.WebViewFallbackViewModel",
+ "usr": "s:8Workflow015WebViewFallbackC5ModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV7versionSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV7versionSSvp",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9viewModel33_32F4DB776C6A6928E36575C991298D05LL8Workflow07WebViewfsI0Cvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9viewModel33_32F4DB776C6A6928E36575C991298D05LL8Workflow07WebViewfsI0Cvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
- "HasInitialValue",
+ "Custom",
+ "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 1,
+ "fixedbinaryorder": 4,
"isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV7versionSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV7versionSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "id",
- "printedName": "id",
+ "name": "urlObserver",
+ "printedName": "urlObserver",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "AppCore.Observer?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Observer",
+ "printedName": "AppCore.Observer",
+ "usr": "s:7AppCore8ObserverC"
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV2idSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV2idSSvp",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC11urlObserver33_32F4DB776C6A6928E36575C991298D05LL7AppCore0I0CSgvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC11urlObserver33_32F4DB776C6A6928E36575C991298D05LL7AppCore0I0CSgvp",
"moduleName": "LinkKit",
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
+ "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 5,
+ "hasStorage": true
+ },
+ {
+ "kind": "Var",
+ "name": "webAuthenticationSession",
+ "printedName": "webAuthenticationSession",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "ProtocolComposition",
+ "printedName": "Any"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV2idSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV2idSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC24webAuthenticationSession33_32F4DB776C6A6928E36575C991298D05LLypSgvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC24webAuthenticationSession33_32F4DB776C6A6928E36575C991298D05LLypSgvp",
+ "moduleName": "LinkKit",
+ "isInternal": true,
+ "declAttributes": [
+ "Custom",
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "fixedbinaryorder": 6,
+ "hasStorage": true
},
{
"kind": "Var",
- "name": "build",
- "printedName": "build",
+ "name": "$__lazy_storage_$_navigateBack",
+ "printedName": "$__lazy_storage_$_navigateBack",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "(() -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "() -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV5buildSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV5buildSSvp",
+ "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC30$__lazy_storage_$_navigateBack33_32F4DB776C6A6928E36575C991298D05LLyycSgvp",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC30$__lazy_storage_$_navigateBack33_32F4DB776C6A6928E36575C991298D05LLyycSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
+ "isInternal": true,
"declAttributes": [
+ "Custom",
"HasInitialValue",
"HasStorage",
- "AccessControl"
+ "Final"
],
- "fixedbinaryorder": 3,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "fixedbinaryorder": 7,
+ "hasStorage": true
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(nibName:bundle:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "InProcessWebviewFallbackController",
+ "printedName": "LinkKit.InProcessWebviewFallbackController",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
@@ -49459,264 +44262,431 @@
"usr": "s:SS"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV5buildSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV5buildSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "branch",
- "printedName": "branch",
- "children": [
+ "usr": "s:Sq"
+ },
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Optional",
+ "printedName": "Foundation.Bundle?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV6branchSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV6branchSSvp",
+ "declKind": "Constructor",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)initWithNibName:bundle:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
"moduleName": "LinkKit",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "initWithNibName:bundle:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
+ "Dynamic",
+ "ObjC",
+ "Custom",
+ "Override"
],
- "fixedbinaryorder": 4,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:createWebViewWith:for:windowFeatures:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "WebKit.WKWebView?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV6branchSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV6branchSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebViewConfiguration",
+ "printedName": "WebKit.WKWebViewConfiguration",
+ "usr": "c:objc(cs)WKWebViewConfiguration"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKNavigationAction",
+ "printedName": "WebKit.WKNavigationAction",
+ "usr": "c:objc(cs)WKNavigationAction"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWindowFeatures",
+ "printedName": "WebKit.WKWindowFeatures",
+ "usr": "c:objc(cs)WKWindowFeatures"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_09createWebI4With3for14windowFeaturesSo05WKWebI0CSgAI_So0pI13ConfigurationCSo18WKNavigationActionCSo08WKWindowO0CtF",
+ "moduleName": "LinkKit",
+ "objc_name": "webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "commit",
- "printedName": "commit",
+ "kind": "Function",
+ "name": "webViewDidClose",
+ "printedName": "webViewDidClose(_:)",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV6commitSSvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV6commitSSvp",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webViewDidClose:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC15webViewDidCloseyySo05WKWebI0CF",
"moduleName": "LinkKit",
+ "objc_name": "webViewDidClose:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "fixedbinaryorder": 5,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:decideMediaCapturePermissionsFor:initiatedBy:type:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV6commitSSvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV6commitSSvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "kind": "TypeNominal",
+ "name": "WKPermissionDecision",
+ "printedName": "WebKit.WKPermissionDecision",
+ "usr": "c:@E@WKPermissionDecision"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKSecurityOrigin",
+ "printedName": "WebKit.WKSecurityOrigin",
+ "usr": "c:objc(cs)WKSecurityOrigin"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKFrameInfo",
+ "printedName": "WebKit.WKFrameInfo",
+ "usr": "c:objc(cs)WKFrameInfo"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKMediaCaptureType",
+ "printedName": "WebKit.WKMediaCaptureType",
+ "usr": "c:@E@WKMediaCaptureType"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_32decideMediaCapturePermissionsFor11initiatedBy4typeSo20WKPermissionDecisionVSo05WKWebI0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaL4TypeVtYaF",
+ "moduleName": "LinkKit",
+ "intro_iOS": "15.0",
+ "objc_name": "webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl",
+ "Available"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "reactNativeSDKVersion",
- "printedName": "reactNativeSDKVersion",
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:didFinish:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ImplicitlyUnwrappedOptional",
+ "printedName": "WebKit.WKNavigation?",
"children": [
{
"kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "name": "WKNavigation",
+ "printedName": "WebKit.WKNavigation",
+ "usr": "c:objc(cs)WKNavigation"
}
],
"usr": "s:Sq"
}
],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvp",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:didFinishNavigation:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_9didFinishySo05WKWebI0C_So12WKNavigationCSgtF",
"moduleName": "LinkKit",
+ "objc_name": "webView:didFinishNavigation:",
"declAttributes": [
- "HasInitialValue",
- "HasStorage",
+ "Final",
+ "ObjC",
+ "Custom",
"AccessControl"
],
- "fixedbinaryorder": 6,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:didCommit:)",
+ "children": [
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ImplicitlyUnwrappedOptional",
+ "printedName": "WebKit.WKNavigation?",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "WKNavigation",
+ "printedName": "WebKit.WKNavigation",
+ "usr": "c:objc(cs)WKNavigation"
}
],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV21reactNativeSDKVersionSSSgvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ "usr": "s:Sq"
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:didCommitNavigation:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_9didCommitySo05WKWebI0C_So12WKNavigationCSgtF",
+ "moduleName": "LinkKit",
+ "objc_name": "webView:didCommitNavigation:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Var",
- "name": "isRunningFlutterSDK",
- "printedName": "isRunningFlutterSDK",
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:decidePolicyFor:decisionHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvp",
- "mangledName": "$s7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvp",
- "moduleName": "LinkKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 7,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
+ "name": "Void",
+ "printedName": "()"
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeNominal",
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKNavigationAction",
+ "printedName": "WebKit.WKNavigationAction",
+ "usr": "c:objc(cs)WKNavigationAction"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(WebKit.WKNavigationActionPolicy) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKNavigationActionPolicy",
+ "printedName": "WebKit.WKNavigationActionPolicy",
+ "usr": "c:@E@WKNavigationActionPolicy"
}
- ],
- "declKind": "Accessor",
- "usr": "s:7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvg",
- "mangledName": "$s7LinkKit15SDKInfoProviderV19isRunningFlutterSDKSbvg",
- "moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Transparent"
- ],
- "accessorKind": "get"
+ ]
}
- ]
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:decidePolicyForNavigationAction:decisionHandler:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_15decidePolicyFor15decisionHandlerySo05WKWebI0C_So18WKNavigationActionCySo0pqK0VctF",
+ "moduleName": "LinkKit",
+ "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
+ "kind": "Function",
+ "name": "presentationAnchor",
+ "printedName": "presentationAnchor(for:)",
"children": [
{
"kind": "TypeNominal",
- "name": "SDKInfoProvider",
- "printedName": "LinkKit.SDKInfoProvider",
- "usr": "s:7LinkKit15SDKInfoProviderV"
+ "name": "UIWindow",
+ "printedName": "UIKit.UIWindow",
+ "usr": "c:objc(cs)UIWindow"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ASWebAuthenticationSession",
+ "printedName": "AuthenticationServices.ASWebAuthenticationSession",
+ "usr": "c:objc(cs)ASWebAuthenticationSession"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit15SDKInfoProviderVACycfc",
- "mangledName": "$s7LinkKit15SDKInfoProviderVACycfc",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)presentationAnchorForWebAuthenticationSession:",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
+ "objc_name": "presentationAnchorForWebAuthenticationSession:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Custom",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
}
],
- "declKind": "Struct",
- "usr": "s:7LinkKit15SDKInfoProviderV",
- "mangledName": "$s7LinkKit15SDKInfoProviderV",
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController",
+ "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC",
"moduleName": "LinkKit",
"declAttributes": [
- "AccessControl"
+ "Custom",
+ "Final",
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIViewController",
+ "superclassNames": [
+ "UIKit.UIViewController",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
],
"conformances": [
{
"kind": "Conformance",
- "name": "SDKInfoProviding",
- "printedName": "SDKInfoProviding",
- "usr": "s:8Workflow16SDKInfoProvidingP",
- "mangledName": "$s8Workflow16SDKInfoProvidingP"
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
},
{
"kind": "Conformance",
@@ -49739,23 +44709,10 @@
},
{
"kind": "Import",
- "name": "AppCoreUI",
- "printedName": "AppCoreUI",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "Log",
- "printedName": "Log",
+ "name": "SafariServices",
+ "printedName": "SafariServices",
"declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
+ "moduleName": "LinkKit"
},
{
"kind": "Import",
@@ -49800,192 +44757,116 @@
},
{
"kind": "TypeDecl",
- "name": "InProcessWebviewFallbackController",
- "printedName": "InProcessWebviewFallbackController",
+ "name": "EmbeddedSearchView",
+ "printedName": "EmbeddedSearchView",
"children": [
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(viewModel:log:)",
+ "printedName": "init(viewModel:handler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "InProcessWebviewFallbackController",
- "printedName": "LinkKit.InProcessWebviewFallbackController",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ "name": "EmbeddedSearchView",
+ "printedName": "LinkKit.EmbeddedSearchView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchView"
},
{
"kind": "TypeNominal",
- "name": "WebViewFallbackViewModel",
- "printedName": "Workflow.WebViewFallbackViewModel",
- "usr": "s:8Workflow015WebViewFallbackC5ModelC"
+ "name": "EmbeddedSearchViewModel",
+ "printedName": "Workflow.EmbeddedSearchViewModel",
+ "usr": "s:8Workflow23EmbeddedSearchViewModelC"
},
{
"kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9viewModel3logAC8Workflow07WebViewfmI0C_3LogAIVtcfc",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9viewModel3logAC8Workflow07WebViewfmI0C_3LogAIVtcfc",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC9viewModel7handlerAC8Workflow0cdeG0C_AA7Handler_ptcfc",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC9viewModel7handlerAC8Workflow0cdeG0C_AA7Handler_ptcfc",
"moduleName": "LinkKit",
"declAttributes": [
"Custom",
- "AccessControl",
"RawDocComment"
],
"init_kind": "Designated"
},
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.InProcessWebviewFallbackController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InProcessWebviewFallbackController",
- "printedName": "LinkKit.InProcessWebviewFallbackController",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)initWithCoder:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC5coderACSgSo7NSCoderC_tcfc",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "initWithCoder:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)viewDidLoad",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC11viewDidLoadyyF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)viewDidAppear:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC13viewDidAppearyySbF",
- "moduleName": "LinkKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "Override"
- ],
- "funcSelfKind": "NonMutating"
- },
{
"kind": "Var",
- "name": "log",
- "printedName": "log",
+ "name": "handler",
+ "printedName": "handler",
"children": [
{
"kind": "TypeNominal",
- "name": "Log",
- "printedName": "Log.Log",
- "usr": "s:3LogAAV"
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC3log33_32F4DB776C6A6928E36575C991298D05LL3LogAFVvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC3log33_32F4DB776C6A6928E36575C991298D05LL3LogAFVvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvp",
"moduleName": "LinkKit",
- "isInternal": true,
"declAttributes": [
"Custom",
"Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
"fixedbinaryorder": 0,
"isLet": true,
- "hasStorage": true
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Handler",
+ "printedName": "LinkKit.Handler",
+ "usr": "s:7LinkKit7HandlerP"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvg",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvg",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
"kind": "Var",
- "name": "stackView",
- "printedName": "stackView",
+ "name": "viewModel",
+ "printedName": "viewModel",
"children": [
{
"kind": "TypeNominal",
- "name": "UIStackView",
- "printedName": "UIKit.UIStackView",
- "usr": "c:objc(cs)UIStackView"
+ "name": "EmbeddedSearchViewModel",
+ "printedName": "Workflow.EmbeddedSearchViewModel",
+ "usr": "s:8Workflow23EmbeddedSearchViewModelC"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9stackView33_32F4DB776C6A6928E36575C991298D05LLSo07UIStackI0Cvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9stackView33_32F4DB776C6A6928E36575C991298D05LLSo07UIStackI0Cvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC9viewModel33_56CDF6B379D3F8DEF2746A7281DF5920LL8Workflow0cdeG0Cvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC9viewModel33_56CDF6B379D3F8DEF2746A7281DF5920LL8Workflow0cdeG0Cvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
"Custom",
- "HasInitialValue",
"Final",
"HasStorage",
- "AccessControl"
+ "AccessControl",
+ "RawDocComment"
],
"fixedbinaryorder": 1,
"isLet": true,
@@ -50004,12 +44885,13 @@
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC7webView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebI0Cvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebI0Cvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC03webE033_56CDF6B379D3F8DEF2746A7281DF5920LLSo05WKWebE0Cvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC03webE033_56CDF6B379D3F8DEF2746A7281DF5920LLSo05WKWebE0Cvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
"Custom",
+ "HasInitialValue",
"Final",
"HasStorage",
"AccessControl"
@@ -50020,27 +44902,27 @@
},
{
"kind": "Var",
- "name": "popupWebView",
- "printedName": "popupWebView",
+ "name": "embeddedSearchAndSelectView",
+ "printedName": "embeddedSearchAndSelectView",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "WebKit.WKWebView?",
+ "printedName": "LinkKit.EmbeddedSearchAndSelectView?",
"children": [
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "EmbeddedSearchAndSelectView",
+ "printedName": "LinkKit.EmbeddedSearchAndSelectView",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC12popupWebView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebJ0CSgvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC12popupWebView33_32F4DB776C6A6928E36575C991298D05LLSo05WKWebJ0CSgvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC08embeddedd9AndSelectE033_56CDF6B379D3F8DEF2746A7281DF5920LLAA0cdghE0CSgvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC08embeddedd9AndSelectE033_56CDF6B379D3F8DEF2746A7281DF5920LLAA0cdghE0CSgvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
@@ -50055,23 +44937,24 @@
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
+ "name": "activityIndicator",
+ "printedName": "activityIndicator",
"children": [
{
"kind": "TypeNominal",
- "name": "WebViewFallbackViewModel",
- "printedName": "Workflow.WebViewFallbackViewModel",
- "usr": "s:8Workflow015WebViewFallbackC5ModelC"
+ "name": "PlaidActivityIndicator",
+ "printedName": "Threads.PlaidActivityIndicator",
+ "usr": "c:@M@Threads@objc(cs)PlaidActivityIndicator"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC9viewModel33_32F4DB776C6A6928E36575C991298D05LL8Workflow07WebViewfsI0Cvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC9viewModel33_32F4DB776C6A6928E36575C991298D05LL8Workflow07WebViewfsI0Cvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC17activityIndicator33_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads013PlaidActivityG0Cvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC17activityIndicator33_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads013PlaidActivityG0Cvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
"Custom",
+ "HasInitialValue",
"Final",
"HasStorage",
"AccessControl"
@@ -50082,61 +44965,62 @@
},
{
"kind": "Var",
- "name": "urlObserver",
- "printedName": "urlObserver",
+ "name": "$__lazy_storage_$_errorView",
+ "printedName": "$__lazy_storage_$_errorView",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "AppCore.Observer?",
+ "printedName": "Threads.ErrorView?",
"children": [
{
"kind": "TypeNominal",
- "name": "Observer",
- "printedName": "AppCore.Observer",
- "usr": "s:7AppCore8ObserverC"
+ "name": "ErrorView",
+ "printedName": "Threads.ErrorView",
+ "usr": "c:@M@Threads@objc(cs)ErrorView"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC11urlObserver33_32F4DB776C6A6928E36575C991298D05LL7AppCore0I0CSgvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC11urlObserver33_32F4DB776C6A6928E36575C991298D05LL7AppCore0I0CSgvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC023$__lazy_storage_$_errorE033_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads05ErrorE0CSgvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC023$__lazy_storage_$_errorE033_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads05ErrorE0CSgvp",
"moduleName": "LinkKit",
+ "implicit": true,
"isInternal": true,
"declAttributes": [
"Custom",
"HasInitialValue",
- "Final",
"HasStorage",
- "AccessControl"
+ "Final"
],
"fixedbinaryorder": 5,
"hasStorage": true
},
{
"kind": "Var",
- "name": "webAuthenticationSession",
- "printedName": "webAuthenticationSession",
+ "name": "presentedViewController",
+ "printedName": "presentedViewController",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
- "printedName": "Any?",
+ "printedName": "UIKit.UIViewController?",
"children": [
{
"kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
+ "name": "UIViewController",
+ "printedName": "UIKit.UIViewController",
+ "usr": "c:objc(cs)UIViewController"
}
],
"usr": "s:Sq"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC24webAuthenticationSession33_32F4DB776C6A6928E36575C991298D05LLypSgvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC24webAuthenticationSession33_32F4DB776C6A6928E36575C991298D05LLypSgvp",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC09presentedE10Controller33_56CDF6B379D3F8DEF2746A7281DF5920LLSo06UIViewG0CSgvp",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC09presentedE10Controller33_56CDF6B379D3F8DEF2746A7281DF5920LLSo06UIViewG0CSgvp",
"moduleName": "LinkKit",
"isInternal": true,
"declAttributes": [
@@ -50144,175 +45028,132 @@
"HasInitialValue",
"Final",
"HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 6,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "$__lazy_storage_$_navigateBack",
- "printedName": "$__lazy_storage_$_navigateBack",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "(() -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit34InProcessWebviewFallbackControllerC30$__lazy_storage_$_navigateBack33_32F4DB776C6A6928E36575C991298D05LLyycSgvp",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC30$__lazy_storage_$_navigateBack33_32F4DB776C6A6928E36575C991298D05LLyycSgvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
+ "AccessControl"
],
- "fixedbinaryorder": 7,
+ "fixedbinaryorder": 6,
"hasStorage": true
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
+ "kind": "Function",
+ "name": "webView",
+ "printedName": "webView(_:decidePolicyFor:decisionHandler:)",
"children": [
{
"kind": "TypeNominal",
- "name": "InProcessWebviewFallbackController",
- "printedName": "LinkKit.InProcessWebviewFallbackController",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
+ "name": "WKWebView",
+ "printedName": "WebKit.WKWebView",
+ "usr": "c:objc(cs)WKWebView"
},
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
+ "name": "WKNavigationAction",
+ "printedName": "WebKit.WKNavigationAction",
+ "usr": "c:objc(cs)WKNavigationAction"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(WebKit.WKNavigationActionPolicy) -> ()",
"children": [
{
"kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WKNavigationActionPolicy",
+ "printedName": "WebKit.WKNavigationActionPolicy",
+ "usr": "c:@E@WKNavigationActionPolicy"
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Constructor",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController(im)initWithNibName:bundle:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
+ "declKind": "Func",
+ "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchView(im)webView:decidePolicyForNavigationAction:decisionHandler:",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC03webE0_15decidePolicyFor15decisionHandlerySo05WKWebE0C_So18WKNavigationActionCySo0mnH0VctF",
"moduleName": "LinkKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
+ "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:",
"declAttributes": [
- "Dynamic",
+ "Final",
"ObjC",
"Custom",
- "Override"
+ "AccessControl"
],
- "init_kind": "Designated"
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webView",
- "printedName": "webView(_:createWebViewWith:for:windowFeatures:)",
+ "name": "stateUpdated",
+ "printedName": "stateUpdated(to:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "WebKit.WKWebView?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- }
- ],
- "usr": "s:Sq"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- },
+ "name": "EmbeddedSearchState",
+ "printedName": "Workflow.EmbeddedSearchState",
+ "usr": "s:8Workflow19EmbeddedSearchStateO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC12stateUpdated2toy8Workflow0cD5StateO_tF",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC12stateUpdated2toy8Workflow0cD5StateO_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(url:popupBehavior:)",
+ "children": [
{
"kind": "TypeNominal",
- "name": "WKWebViewConfiguration",
- "printedName": "WebKit.WKWebViewConfiguration",
- "usr": "c:objc(cs)WKWebViewConfiguration"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "WKNavigationAction",
- "printedName": "WebKit.WKNavigationAction",
- "usr": "c:objc(cs)WKNavigationAction"
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
},
{
"kind": "TypeNominal",
- "name": "WKWindowFeatures",
- "printedName": "WebKit.WKWindowFeatures",
- "usr": "c:objc(cs)WKWindowFeatures"
+ "name": "EmbeddedSearchPopupBehavior",
+ "printedName": "Workflow.EmbeddedSearchPopupBehavior",
+ "usr": "s:8Workflow27EmbeddedSearchPopupBehaviorO"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_09createWebI4With3for14windowFeaturesSo05WKWebI0CSgAI_So0pI13ConfigurationCSo18WKNavigationActionCSo08WKWindowO0CtF",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC4open3url13popupBehaviory10Foundation3URLV_8Workflow0cd5PopupI0OtF",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC4open3url13popupBehaviory10Foundation3URLV_8Workflow0cd5PopupI0OtF",
"moduleName": "LinkKit",
- "objc_name": "webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:",
"declAttributes": [
- "Final",
- "ObjC",
"Custom",
- "AccessControl"
+ "Final"
],
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webViewDidClose",
- "printedName": "webViewDidClose(_:)",
+ "name": "present",
+ "printedName": "present(modal:)",
"children": [
{
"kind": "TypeNominal",
@@ -50321,126 +45162,440 @@
},
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "SDKModal",
+ "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_SDKInternalEvent.SDKModal",
+ "usr": "s:13WorkflowProto05Link_A29_Nodes_Panes_SDKInternalEventV8SDKModalV"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webViewDidClose:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC15webViewDidCloseyySo05WKWebI0CF",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC7present5modaly13WorkflowProto0a1_H29_Nodes_Panes_SDKInternalEventV8SDKModalV_tF",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC7present5modaly13WorkflowProto0a1_H29_Nodes_Panes_SDKInternalEventV8SDKModalV_tF",
"moduleName": "LinkKit",
- "objc_name": "webViewDidClose:",
"declAttributes": [
- "Final",
- "ObjC",
"Custom",
- "AccessControl"
+ "Final"
],
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webView",
- "printedName": "webView(_:decideMediaCapturePermissionsFor:initiatedBy:type:)",
+ "name": "hideModal",
+ "printedName": "hideModal(hide:)",
"children": [
{
"kind": "TypeNominal",
- "name": "WKPermissionDecision",
- "printedName": "WebKit.WKPermissionDecision",
- "usr": "c:@E@WKPermissionDecision"
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit18EmbeddedSearchViewC9hideModal0F0ySb_tF",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC9hideModal0F0ySb_tF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchView",
+ "mangledName": "$s7LinkKit18EmbeddedSearchViewC",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "Custom",
+ "Final",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)UIView",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "UIKit.UIView",
+ "UIKit.UIResponder",
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "EmbeddedSearchViewModelDelegate",
+ "printedName": "EmbeddedSearchViewModelDelegate",
+ "usr": "s:8Workflow31EmbeddedSearchViewModelDelegateP",
+ "mangledName": "$s8Workflow31EmbeddedSearchViewModelDelegateP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "UITraitChangeObservable",
+ "printedName": "UITraitChangeObservable",
+ "usr": "s:5UIKit23UITraitChangeObservableP",
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "__DefaultCustomPlaygroundQuickLookable",
+ "printedName": "__DefaultCustomPlaygroundQuickLookable",
+ "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
+ "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "LayoutArea",
+ "printedName": "LayoutArea",
+ "usr": "s:9AppCoreUI10LayoutAreaP",
+ "mangledName": "$s9AppCoreUI10LayoutAreaP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "FlutterLinkKit",
+ "printedName": "FlutterLinkKit",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "isRunningFlutter",
+ "printedName": "isRunningFlutter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvpZ",
+ "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvgZ",
+ "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvsZ",
+ "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvsZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "set"
},
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvMZ",
+ "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvMZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
{
"kind": "TypeNominal",
- "name": "WKSecurityOrigin",
- "printedName": "WebKit.WKSecurityOrigin",
- "usr": "c:objc(cs)WKSecurityOrigin"
+ "name": "FlutterLinkKit",
+ "printedName": "LinkKit.FlutterLinkKit",
+ "usr": "s:7LinkKit07FlutteraB0V"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:7LinkKit07FlutteraB0VACycfc",
+ "mangledName": "$s7LinkKit07FlutteraB0VACycfc",
+ "moduleName": "LinkKit",
+ "implicit": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:7LinkKit07FlutteraB0V",
+ "mangledName": "$s7LinkKit07FlutteraB0V",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "RoutingNumberValidator",
+ "printedName": "RoutingNumberValidator",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "isValid",
+ "printedName": "isValid(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
},
{
"kind": "TypeNominal",
- "name": "WKFrameInfo",
- "printedName": "WebKit.WKFrameInfo",
- "usr": "c:objc(cs)WKFrameInfo"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit22RoutingNumberValidatorO7isValidySbSSFZ",
+ "mangledName": "$s7LinkKit22RoutingNumberValidatorO7isValidySbSSFZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:7LinkKit22RoutingNumberValidatorO",
+ "mangledName": "$s7LinkKit22RoutingNumberValidatorO",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Handler",
+ "printedName": "Handler",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "open",
+ "printedName": "open(presentUsing:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
},
{
"kind": "TypeNominal",
- "name": "WKMediaCaptureType",
- "printedName": "WebKit.WKMediaCaptureType",
- "usr": "c:@E@WKMediaCaptureType"
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_32decideMediaCapturePermissionsFor11initiatedBy4typeSo20WKPermissionDecisionVSo05WKWebI0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaL4TypeVtYaF",
+ "usr": "s:7LinkKit7HandlerP4open12presentUsingyAA18PresentationMethodO_tF",
+ "mangledName": "$s7LinkKit7HandlerP4open12presentUsingyAA18PresentationMethodO_tF",
"moduleName": "LinkKit",
- "intro_iOS": "15.0",
- "objc_name": "webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl",
- "Available"
+ "RawDocComment"
],
- "isFromExtension": true,
+ "reqNewWitnessTableEntry": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webView",
- "printedName": "webView(_:didFinish:)",
+ "name": "createEmbeddedView",
+ "printedName": "createEmbeddedView(presentUsing:)",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "UIView",
+ "printedName": "UIKit.UIView",
+ "usr": "c:objc(cs)UIView"
},
{
"kind": "TypeNominal",
- "name": "ImplicitlyUnwrappedOptional",
- "printedName": "WebKit.WKNavigation?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "WKNavigation",
- "printedName": "WebKit.WKNavigation",
- "usr": "c:objc(cs)WKNavigation"
- }
- ],
- "usr": "s:Sq"
+ "name": "PresentationMethod",
+ "printedName": "LinkKit.PresentationMethod",
+ "usr": "s:7LinkKit18PresentationMethodO"
}
],
"declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:didFinishNavigation:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_9didFinishySo05WKWebI0C_So12WKNavigationCSgtF",
+ "usr": "s:7LinkKit7HandlerP18createEmbeddedView12presentUsingSo6UIViewCAA18PresentationMethodO_tF",
+ "mangledName": "$s7LinkKit7HandlerP18createEmbeddedView12presentUsingSo6UIViewCAA18PresentationMethodO_tF",
"moduleName": "LinkKit",
- "objc_name": "webView:didFinishNavigation:",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
+ "RawDocComment"
],
- "isFromExtension": true,
+ "reqNewWitnessTableEntry": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
- "name": "webView",
- "printedName": "webView(_:didCommit:)",
+ "name": "resumeAfterTermination",
+ "printedName": "resumeAfterTermination(from:)",
"children": [
{
"kind": "TypeNominal",
@@ -50449,326 +45604,462 @@
},
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- },
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:7LinkKit7HandlerP22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "mangledName": "$s7LinkKit7HandlerP22resumeAfterTermination4fromy10Foundation3URLV_tF",
+ "moduleName": "LinkKit",
+ "genericSig": "<τ_0_0 where τ_0_0 : LinkKit.Handler>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:7LinkKit7HandlerP",
+ "mangledName": "$s7LinkKit7HandlerP",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "LinkKit"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "InvalidInputErrorCode",
+ "printedName": "InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "invalidApiKeys",
+ "printedName": "invalidApiKeys",
+ "children": [
{
- "kind": "TypeNominal",
- "name": "ImplicitlyUnwrappedOptional",
- "printedName": "WebKit.WKNavigation?",
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "WKNavigation",
- "printedName": "WebKit.WKNavigation",
- "usr": "c:objc(cs)WKNavigation"
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
}
- ],
- "usr": "s:Sq"
+ ]
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:didCommitNavigation:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_9didCommitySo05WKWebI0C_So12WKNavigationCSgtF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO14invalidApiKeysyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO14invalidApiKeysyA2CmF",
"moduleName": "LinkKit",
- "objc_name": "webView:didCommitNavigation:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl",
"RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ ]
},
{
- "kind": "Function",
- "name": "webView",
- "printedName": "webView(_:decidePolicyFor:decisionHandler:)",
+ "kind": "Var",
+ "name": "unauthorizedEnvironment",
+ "printedName": "unauthorizedEnvironment",
"children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- },
- {
- "kind": "TypeNominal",
- "name": "WKNavigationAction",
- "printedName": "WebKit.WKNavigationAction",
- "usr": "c:objc(cs)WKNavigationAction"
- },
{
"kind": "TypeFunc",
"name": "Function",
- "printedName": "(WebKit.WKNavigationActionPolicy) -> ()",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "WKNavigationActionPolicy",
- "printedName": "WebKit.WKNavigationActionPolicy",
- "usr": "c:@E@WKNavigationActionPolicy"
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
}
]
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)webView:decidePolicyForNavigationAction:decisionHandler:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC7webView_15decidePolicyFor15decisionHandlerySo05WKWebI0C_So18WKNavigationActionCySo0pqK0VctF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO23unauthorizedEnvironmentyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO23unauthorizedEnvironmentyA2CmF",
"moduleName": "LinkKit",
- "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "RawDocComment"
+ ]
},
{
- "kind": "Function",
- "name": "presentationAnchor",
- "printedName": "presentationAnchor(for:)",
+ "kind": "Var",
+ "name": "invalidAccessToken",
+ "printedName": "invalidAccessToken",
"children": [
{
- "kind": "TypeNominal",
- "name": "UIWindow",
- "printedName": "UIKit.UIWindow",
- "usr": "c:objc(cs)UIWindow"
- },
- {
- "kind": "TypeNominal",
- "name": "ASWebAuthenticationSession",
- "printedName": "AuthenticationServices.ASWebAuthenticationSession",
- "usr": "c:objc(cs)ASWebAuthenticationSession"
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
}
],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)InProcessWebviewFallbackController(im)presentationAnchorForWebAuthenticationSession:",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF",
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidAccessTokenyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidAccessTokenyA2CmF",
"moduleName": "LinkKit",
- "objc_name": "presentationAnchorForWebAuthenticationSession:",
"declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)InProcessWebviewFallbackController",
- "mangledName": "$s7LinkKit34InProcessWebviewFallbackControllerC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ "kind": "Var",
+ "name": "invalidPublicToken",
+ "printedName": "invalidPublicToken",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidPublicTokenyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidPublicTokenyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
+ "kind": "Var",
+ "name": "invalidProduct",
+ "printedName": "invalidProduct",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO14invalidProductyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO14invalidProductyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ "kind": "Var",
+ "name": "invalidAccountId",
+ "printedName": "invalidAccountId",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO16invalidAccountIdyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO16invalidAccountIdyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ "kind": "Var",
+ "name": "invalidInstitution",
+ "printedName": "invalidInstitution",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO18invalidInstitutionyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO18invalidInstitutionyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "kind": "Var",
+ "name": "tooManyVerificationAttempts",
+ "printedName": "tooManyVerificationAttempts",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO27tooManyVerificationAttemptsyA2CmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO27tooManyVerificationAttemptsyA2CmF",
+ "moduleName": "LinkKit",
+ "declAttributes": [
+ "RawDocComment"
+ ]
},
{
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(LinkKit.InvalidInputErrorCode.Type) -> (Swift.String) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> LinkKit.InvalidInputErrorCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "LinkKit.InvalidInputErrorCode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO7unknownyACSScACmF",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO7unknownyACSScACmF",
+ "moduleName": "LinkKit"
},
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "AppCore",
- "printedName": "AppCore",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "SafariServices",
- "printedName": "SafariServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Threads",
- "printedName": "Threads",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "WebKit",
- "printedName": "WebKit",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "Import",
- "name": "Workflow",
- "printedName": "Workflow",
- "declKind": "Import",
- "moduleName": "LinkKit",
- "declAttributes": [
- "ImplementationOnly"
- ]
- },
- {
- "kind": "Import",
- "name": "AuthenticationServices",
- "printedName": "AuthenticationServices",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "EmbeddedSearchView",
- "printedName": "EmbeddedSearchView",
- "children": [
{
"kind": "Constructor",
"name": "init",
- "printedName": "init(viewModel:handler:)",
+ "printedName": "init(string:)",
"children": [
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchView",
- "printedName": "LinkKit.EmbeddedSearchView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchView"
- },
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchViewModel",
- "printedName": "Workflow.EmbeddedSearchViewModel",
- "usr": "s:8Workflow23EmbeddedSearchViewModelC"
+ "name": "InvalidInputErrorCode",
+ "printedName": "LinkKit.InvalidInputErrorCode",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO"
},
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Constructor",
- "usr": "s:7LinkKit18EmbeddedSearchViewC9viewModel7handlerAC8Workflow0cdeG0C_AA7Handler_ptcfc",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC9viewModel7handlerAC8Workflow0cdeG0C_AA7Handler_ptcfc",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO6stringACSS_tcfc",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6stringACSS_tcfc",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "RawDocComment"
+ "AccessControl"
],
"init_kind": "Designated"
},
{
"kind": "Var",
- "name": "handler",
- "printedName": "handler",
+ "name": "description",
+ "printedName": "description",
"children": [
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvp",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO11descriptionSSvp",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO11descriptionSSvp",
"moduleName": "LinkKit",
"declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 0,
- "isLet": true,
- "hasStorage": true,
"accessors": [
{
"kind": "Accessor",
@@ -50777,518 +46068,292 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Handler",
- "printedName": "LinkKit.Handler",
- "usr": "s:7LinkKit7HandlerP"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvg",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC7handlerAA7Handler_pvg",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO11descriptionSSvg",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO11descriptionSSvg",
"moduleName": "LinkKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
"accessorKind": "get"
}
]
},
{
"kind": "Var",
- "name": "viewModel",
- "printedName": "viewModel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchViewModel",
- "printedName": "Workflow.EmbeddedSearchViewModel",
- "usr": "s:8Workflow23EmbeddedSearchViewModelC"
- }
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC9viewModel33_56CDF6B379D3F8DEF2746A7281DF5920LL8Workflow0cdeG0Cvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC9viewModel33_56CDF6B379D3F8DEF2746A7281DF5920LL8Workflow0cdeG0Cvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "fixedbinaryorder": 1,
- "isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "webView",
- "printedName": "webView",
+ "name": "invalidApiKeysString",
+ "printedName": "invalidApiKeysString",
"children": [
{
"kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC03webE033_56CDF6B379D3F8DEF2746A7281DF5920LLSo05WKWebE0Cvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC03webE033_56CDF6B379D3F8DEF2746A7281DF5920LLSo05WKWebE0Cvp",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvpZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 2,
"isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "embeddedSearchAndSelectView",
- "printedName": "embeddedSearchAndSelectView",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "LinkKit.EmbeddedSearchAndSelectView?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "EmbeddedSearchAndSelectView",
- "printedName": "LinkKit.EmbeddedSearchAndSelectView",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchAndSelectView"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidApiKeysStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC08embeddedd9AndSelectE033_56CDF6B379D3F8DEF2746A7281DF5920LLAA0cdghE0CSgvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC08embeddedd9AndSelectE033_56CDF6B379D3F8DEF2746A7281DF5920LLAA0cdghE0CSgvp",
- "moduleName": "LinkKit",
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "fixedbinaryorder": 3,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "activityIndicator",
- "printedName": "activityIndicator",
+ "name": "unauthorizedEnvironmentString",
+ "printedName": "unauthorizedEnvironmentString",
"children": [
{
"kind": "TypeNominal",
- "name": "PlaidActivityIndicator",
- "printedName": "Threads.PlaidActivityIndicator",
- "usr": "c:@M@Threads@objc(cs)PlaidActivityIndicator"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC17activityIndicator33_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads013PlaidActivityG0Cvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC17activityIndicator33_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads013PlaidActivityG0Cvp",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvpZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 4,
"isLet": true,
- "hasStorage": true
- },
- {
- "kind": "Var",
- "name": "$__lazy_storage_$_errorView",
- "printedName": "$__lazy_storage_$_errorView",
- "children": [
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Threads.ErrorView?",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "ErrorView",
- "printedName": "Threads.ErrorView",
- "usr": "c:@M@Threads@objc(cs)ErrorView"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "usr": "s:Sq"
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO29unauthorizedEnvironmentStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
}
- ],
- "declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC023$__lazy_storage_$_errorE033_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads05ErrorE0CSgvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC023$__lazy_storage_$_errorE033_56CDF6B379D3F8DEF2746A7281DF5920LL7Threads05ErrorE0CSgvp",
- "moduleName": "LinkKit",
- "implicit": true,
- "isInternal": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "HasStorage",
- "Final"
- ],
- "fixedbinaryorder": 5,
- "hasStorage": true
+ ]
},
{
"kind": "Var",
- "name": "presentedViewController",
- "printedName": "presentedViewController",
+ "name": "invalidAccessTokenString",
+ "printedName": "invalidAccessTokenString",
"children": [
{
"kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit18EmbeddedSearchViewC09presentedE10Controller33_56CDF6B379D3F8DEF2746A7281DF5920LLSo06UIViewG0CSgvp",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC09presentedE10Controller33_56CDF6B379D3F8DEF2746A7281DF5920LLSo06UIViewG0CSgvp",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvpZ",
"moduleName": "LinkKit",
- "isInternal": true,
+ "static": true,
"declAttributes": [
- "Custom",
"HasInitialValue",
- "Final",
"HasStorage",
"AccessControl"
],
- "fixedbinaryorder": 6,
- "hasStorage": true
- },
- {
- "kind": "Function",
- "name": "webView",
- "printedName": "webView(_:decidePolicyFor:decisionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "WKWebView",
- "printedName": "WebKit.WKWebView",
- "usr": "c:objc(cs)WKWebView"
- },
- {
- "kind": "TypeNominal",
- "name": "WKNavigationAction",
- "printedName": "WebKit.WKNavigationAction",
- "usr": "c:objc(cs)WKNavigationAction"
- },
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(WebKit.WKNavigationActionPolicy) -> ()",
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "WKNavigationActionPolicy",
- "printedName": "WebKit.WKNavigationActionPolicy",
- "usr": "c:@E@WKNavigationActionPolicy"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@LinkKit@objc(cs)EmbeddedSearchView(im)webView:decidePolicyForNavigationAction:decisionHandler:",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC03webE0_15decidePolicyFor15decisionHandlerySo05WKWebE0C_So18WKNavigationActionCySo0mnH0VctF",
- "moduleName": "LinkKit",
- "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:",
- "declAttributes": [
- "Final",
- "ObjC",
- "Custom",
- "AccessControl"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "stateUpdated",
- "printedName": "stateUpdated(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchState",
- "printedName": "Workflow.EmbeddedSearchState",
- "usr": "s:8Workflow19EmbeddedSearchStateO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit18EmbeddedSearchViewC12stateUpdated2toy8Workflow0cD5StateO_tF",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC12stateUpdated2toy8Workflow0cD5StateO_tF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "open",
- "printedName": "open(url:popupBehavior:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- },
- {
- "kind": "TypeNominal",
- "name": "EmbeddedSearchPopupBehavior",
- "printedName": "Workflow.EmbeddedSearchPopupBehavior",
- "usr": "s:8Workflow27EmbeddedSearchPopupBehaviorO"
- }
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit18EmbeddedSearchViewC4open3url13popupBehaviory10Foundation3URLV_8Workflow0cd5PopupI0OtF",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC4open3url13popupBehaviory10Foundation3URLV_8Workflow0cd5PopupI0OtF",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidAccessTokenStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Function",
- "name": "present",
- "printedName": "present(modal:)",
+ "kind": "Var",
+ "name": "invalidPublicTokenString",
+ "printedName": "invalidPublicTokenString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SDKModal",
- "printedName": "WorkflowProto.Link_Workflow_Nodes_Panes_SDKInternalEvent.SDKModal",
- "usr": "s:13WorkflowProto05Link_A29_Nodes_Panes_SDKInternalEventV8SDKModalV"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18EmbeddedSearchViewC7present5modaly13WorkflowProto0a1_H29_Nodes_Panes_SDKInternalEventV8SDKModalV_tF",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC7present5modaly13WorkflowProto0a1_H29_Nodes_Panes_SDKInternalEventV8SDKModalV_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "Custom",
- "Final"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidPublicTokenStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
{
- "kind": "Function",
- "name": "hideModal",
- "printedName": "hideModal(hide:)",
+ "kind": "Var",
+ "name": "invalidProductString",
+ "printedName": "invalidProductString",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
- "declKind": "Func",
- "usr": "s:7LinkKit18EmbeddedSearchViewC9hideModal0F0ySb_tF",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC9hideModal0F0ySb_tF",
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvpZ",
"moduleName": "LinkKit",
+ "static": true,
"declAttributes": [
- "Custom",
- "Final"
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@LinkKit@objc(cs)EmbeddedSearchView",
- "mangledName": "$s7LinkKit18EmbeddedSearchViewC",
- "moduleName": "LinkKit",
- "declAttributes": [
- "Custom",
- "Final",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "EmbeddedSearchViewModelDelegate",
- "printedName": "EmbeddedSearchViewModelDelegate",
- "usr": "s:8Workflow31EmbeddedSearchViewModelDelegateP",
- "mangledName": "$s8Workflow31EmbeddedSearchViewModelDelegateP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO20invalidProductStringSSvgZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Transparent"
+ ],
+ "accessorKind": "get"
+ }
+ ]
},
- {
- "kind": "Conformance",
- "name": "LayoutArea",
- "printedName": "LayoutArea",
- "usr": "s:9AppCoreUI10LayoutAreaP",
- "mangledName": "$s9AppCoreUI10LayoutAreaP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "FlutterLinkKit",
- "printedName": "FlutterLinkKit",
- "children": [
{
"kind": "Var",
- "name": "isRunningFlutter",
- "printedName": "isRunningFlutter",
+ "name": "invalidAccountIdString",
+ "printedName": "invalidAccountIdString",
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Var",
- "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvpZ",
- "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvpZ",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvpZ",
"moduleName": "LinkKit",
"static": true,
"declAttributes": [
"HasInitialValue",
"HasStorage",
- "AccessControl",
- "RawDocComment"
+ "AccessControl"
],
+ "isLet": true,
"hasStorage": true,
"accessors": [
{
@@ -51298,14 +46363,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvgZ",
- "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvgZ",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO22invalidAccountIdStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
@@ -51313,146 +46378,187 @@
"Transparent"
],
"accessorKind": "get"
- },
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "invalidInstitutionString",
+ "printedName": "invalidInstitutionString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvsZ",
- "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvsZ",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO24invalidInstitutionStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
- "accessorKind": "set"
- },
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "tooManyVerificationAttemptsString",
+ "printedName": "tooManyVerificationAttemptsString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvpZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvpZ",
+ "moduleName": "LinkKit",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
{
"kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
+ "name": "Get",
+ "printedName": "Get()",
"children": [
{
"kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
}
],
"declKind": "Accessor",
- "usr": "s:7LinkKit07FlutteraB0V09isRunningC0SbvMZ",
- "mangledName": "$s7LinkKit07FlutteraB0V09isRunningC0SbvMZ",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvgZ",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO33tooManyVerificationAttemptsStringSSvgZ",
"moduleName": "LinkKit",
"static": true,
"implicit": true,
"declAttributes": [
"Transparent"
],
- "accessorKind": "_modify"
+ "accessorKind": "get"
}
]
},
{
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
+ "kind": "Var",
+ "name": "toObjC",
+ "printedName": "toObjC",
"children": [
{
"kind": "TypeNominal",
- "name": "FlutterLinkKit",
- "printedName": "LinkKit.FlutterLinkKit",
- "usr": "s:7LinkKit07FlutteraB0V"
+ "name": "Optional",
+ "printedName": "LinkKit.PLKInvalidInputErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKInvalidInputErrorCode",
+ "printedName": "LinkKit.PLKInvalidInputErrorCode",
+ "usr": "c:@E@PLKInvalidInputErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
}
],
- "declKind": "Constructor",
- "usr": "s:7LinkKit07FlutteraB0VACycfc",
- "mangledName": "$s7LinkKit07FlutteraB0VACycfc",
+ "declKind": "Var",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvp",
"moduleName": "LinkKit",
- "implicit": true,
- "init_kind": "Designated"
- }
- ],
- "declKind": "Struct",
- "usr": "s:7LinkKit07FlutteraB0V",
- "mangledName": "$s7LinkKit07FlutteraB0V",
- "moduleName": "LinkKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "LinkKit"
- },
- {
- "kind": "TypeDecl",
- "name": "RoutingNumberValidator",
- "printedName": "RoutingNumberValidator",
- "children": [
- {
- "kind": "Function",
- "name": "isValid",
- "printedName": "isValid(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
+ "isFromExtension": true,
+ "accessors": [
{
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "LinkKit.PLKInvalidInputErrorCode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PLKInvalidInputErrorCode",
+ "printedName": "LinkKit.PLKInvalidInputErrorCode",
+ "usr": "c:@E@PLKInvalidInputErrorCode"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO6toObjCSo010PLKInvaliddeF0VSgvg",
+ "moduleName": "LinkKit",
+ "isFromExtension": true,
+ "accessorKind": "get"
}
- ],
- "declKind": "Func",
- "usr": "s:7LinkKit22RoutingNumberValidatorO7isValidySbSSFZ",
- "mangledName": "$s7LinkKit22RoutingNumberValidatorO7isValidySbSSFZ",
- "moduleName": "LinkKit",
- "static": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
+ ]
}
],
"declKind": "Enum",
- "usr": "s:7LinkKit22RoutingNumberValidatorO",
- "mangledName": "$s7LinkKit22RoutingNumberValidatorO",
+ "usr": "s:7LinkKit21InvalidInputErrorCodeO",
+ "mangledName": "$s7LinkKit21InvalidInputErrorCodeO",
"moduleName": "LinkKit",
"declAttributes": [
"AccessControl"
],
- "isEnumExhaustive": true,
"conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Error",
+ "printedName": "Error",
+ "usr": "s:s5ErrorP",
+ "mangledName": "$ss5ErrorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
{
"kind": "Conformance",
"name": "Sendable",
@@ -51765,12 +46871,44 @@
"moduleName": "Foundation",
"intro_Macosx": "10.8",
"intro_iOS": "6.0",
+ "intro_tvOS": "9.0",
+ "intro_watchOS": "2.0",
"declAttributes": [
+ "Available",
+ "Available",
"Available",
"Available"
],
"isExternal": true,
"conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
{
"kind": "Conformance",
"name": "ReferenceConvertible",
@@ -51793,27 +46931,6 @@
"usr": "s:10Foundation20ReferenceConvertibleP",
"mangledName": "$s10Foundation20ReferenceConvertibleP"
},
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
{
"kind": "Conformance",
"name": "CustomDebugStringConvertible",
@@ -51821,13 +46938,6 @@
"usr": "s:s28CustomDebugStringConvertibleP",
"mangledName": "$ss28CustomDebugStringConvertibleP"
},
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
{
"kind": "Conformance",
"name": "_ObjectiveCBridgeable",
@@ -51850,6 +46960,13 @@
"usr": "s:s21_ObjectiveCBridgeableP",
"mangledName": "$ss21_ObjectiveCBridgeableP"
},
+ {
+ "kind": "Conformance",
+ "name": "CustomReflectable",
+ "printedName": "CustomReflectable",
+ "usr": "s:s17CustomReflectableP",
+ "mangledName": "$ss17CustomReflectableP"
+ },
{
"kind": "Conformance",
"name": "Decodable",
@@ -51863,6 +46980,13 @@
"printedName": "Encodable",
"usr": "s:SE",
"mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
}
]
},
@@ -51941,7 +47065,7 @@
{
"kind": "TypeNominal",
"name": "CGSize",
- "printedName": "CoreGraphics.CGSize",
+ "printedName": "CoreFoundation.CGSize",
"usr": "c:@S@CGSize"
}
],
@@ -52097,13 +47221,13 @@
{
"kind": "TypeNominal",
"name": "CGSize",
- "printedName": "CoreGraphics.CGSize",
+ "printedName": "CoreFoundation.CGSize",
"usr": "c:@S@CGSize"
},
{
"kind": "TypeNominal",
"name": "CGSize",
- "printedName": "CoreGraphics.CGSize",
+ "printedName": "CoreFoundation.CGSize",
"usr": "c:@S@CGSize"
}
],
@@ -53203,7 +48327,11 @@
"moduleName": "Foundation",
"intro_Macosx": "10.10",
"intro_iOS": "8.0",
+ "intro_tvOS": "9.0",
+ "intro_watchOS": "2.0",
"declAttributes": [
+ "Available",
+ "Available",
"Available",
"Available"
],
@@ -53245,6 +48373,13 @@
"usr": "s:SQ",
"mangledName": "$sSQ"
},
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
{
"kind": "Conformance",
"name": "CustomStringConvertible",
@@ -53380,13 +48515,6 @@
"moduleName": "WorkflowProto",
"isExternal": true,
"conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
{
"kind": "Conformance",
"name": "Message",
@@ -53428,6 +48556,13 @@
"printedName": "Equatable",
"usr": "s:SQ",
"mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
@@ -53482,13 +48617,6 @@
"moduleName": "WorkflowProto",
"isExternal": true,
"conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
{
"kind": "Conformance",
"name": "Message",
@@ -53530,6 +48658,13 @@
"printedName": "Equatable",
"usr": "s:SQ",
"mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
}
]
},
@@ -53585,41 +48720,6 @@
"static": true,
"isFromExtension": true,
"funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "asAccountFilter",
- "printedName": "asAccountFilter()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.String : WorkflowProto.Link_Workflow_Primitives_LinkConfiguration.RepeatedAccountSubtype]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "RepeatedAccountSubtype",
- "printedName": "WorkflowProto.Link_Workflow_Primitives_LinkConfiguration.RepeatedAccountSubtype",
- "usr": "s:13WorkflowProto05Link_a12_Primitives_C13ConfigurationV22RepeatedAccountSubtypeV"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "declKind": "Func",
- "usr": "s:Sa7LinkKitAA14AccountSubtypeORszlE02asC6FilterSDySS13WorkflowProto0a1_g12_Primitives_A13ConfigurationV08RepeatedcD0VGyF",
- "mangledName": "$sSa7LinkKitAA14AccountSubtypeORszlE02asC6FilterSDySS13WorkflowProto0a1_g12_Primitives_A13ConfigurationV08RepeatedcD0VGyF",
- "moduleName": "LinkKit",
- "genericSig": "<τ_0_0 where τ_0_0 == LinkKit.AccountSubtype>",
- "sugared_genericSig": "",
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
}
],
"declKind": "Struct",
@@ -54152,6 +49252,42 @@
"usr": "s:s19_HasContiguousBytesP",
"mangledName": "$ss19_HasContiguousBytesP"
},
+ {
+ "kind": "Conformance",
+ "name": "_ObjectiveCBridgeable",
+ "printedName": "_ObjectiveCBridgeable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_ObjectiveCType",
+ "printedName": "_ObjectiveCType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSArray",
+ "printedName": "Foundation.NSArray",
+ "usr": "c:objc(cs)NSArray"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s21_ObjectiveCBridgeableP",
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "ContiguousBytes",
+ "printedName": "ContiguousBytes",
+ "usr": "s:10Foundation15ContiguousBytesP",
+ "mangledName": "$s10Foundation15ContiguousBytesP"
+ },
{
"kind": "Conformance",
"name": "EncodableWithConfiguration",
@@ -54238,42 +49374,6 @@
"printedName": "MutableDataProtocol",
"usr": "s:10Foundation19MutableDataProtocolP",
"mangledName": "$s10Foundation19MutableDataProtocolP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSArray",
- "printedName": "Foundation.NSArray",
- "usr": "c:objc(cs)NSArray"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "ContiguousBytes",
- "printedName": "ContiguousBytes",
- "usr": "s:10Foundation15ContiguousBytesP",
- "mangledName": "$s10Foundation15ContiguousBytesP"
}
]
},
@@ -54468,127 +49568,154 @@
],
"usr": "s:10Foundation26DecodableWithConfigurationP",
"mangledName": "$s10Foundation26DecodableWithConfigurationP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "PLKLinkTokenConfiguration",
- "printedName": "PLKLinkTokenConfiguration",
- "children": [
+ },
{
- "kind": "Var",
- "name": "toSwift",
- "printedName": "toSwift",
+ "kind": "Conformance",
+ "name": "Gesture",
+ "printedName": "Gesture",
"children": [
{
- "kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
- }
- ],
- "declKind": "Var",
- "usr": "s:So25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvp",
- "mangledName": "$sSo25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvp",
- "moduleName": "LinkKit",
- "isOpen": true,
- "isFromExtension": true,
- "accessors": [
+ "kind": "TypeWitness",
+ "name": "Value",
+ "printedName": "Value",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DependentMember",
+ "printedName": "τ_0_0.Value"
+ }
+ ]
+ },
{
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
+ "kind": "TypeWitness",
+ "name": "Body",
+ "printedName": "Body",
"children": [
{
"kind": "TypeNominal",
- "name": "LinkTokenConfiguration",
- "printedName": "LinkKit.LinkTokenConfiguration",
- "usr": "s:7LinkKit0A18TokenConfigurationV"
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
}
- ],
- "declKind": "Accessor",
- "usr": "s:So25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvg",
- "mangledName": "$sSo25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvg",
- "moduleName": "LinkKit",
- "isOpen": true,
- "isFromExtension": true,
- "accessorKind": "get"
+ ]
}
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)PLKLinkTokenConfiguration",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "PLKLinkTokenConfiguration",
- "declAttributes": [
- "ObjC",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
+ ],
+ "usr": "s:7SwiftUI7GestureP",
+ "mangledName": "$s7SwiftUI7GestureP"
},
{
"kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
+ "name": "View",
+ "printedName": "View",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "Body",
+ "printedName": "Body",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:7SwiftUI4ViewP",
+ "mangledName": "$s7SwiftUI4ViewP"
},
{
"kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ "name": "TableRowContent",
+ "printedName": "TableRowContent",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "TableRowValue",
+ "printedName": "TableRowValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DependentMember",
+ "printedName": "τ_0_0.TableRowValue"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "TableRowBody",
+ "printedName": "TableRowBody",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:7SwiftUI15TableRowContentP",
+ "mangledName": "$s7SwiftUI15TableRowContentP"
},
{
"kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ "name": "Commands",
+ "printedName": "Commands",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "Body",
+ "printedName": "Body",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:7SwiftUI8CommandsP",
+ "mangledName": "$s7SwiftUI8CommandsP"
},
{
"kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
+ "name": "ToolbarContent",
+ "printedName": "ToolbarContent",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "Body",
+ "printedName": "Body",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Never",
+ "printedName": "Swift.Never",
+ "usr": "s:s5NeverO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:7SwiftUI14ToolbarContentP",
+ "mangledName": "$s7SwiftUI14ToolbarContentP"
},
{
"kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
+ "name": "CustomizableToolbarContent",
+ "printedName": "CustomizableToolbarContent",
+ "usr": "s:7SwiftUI26CustomizableToolbarContentP",
+ "mangledName": "$s7SwiftUI26CustomizableToolbarContentP"
}
]
},
{
"kind": "TypeDecl",
- "name": "PLKOAuthNonceConfiguration",
- "printedName": "PLKOAuthNonceConfiguration",
+ "name": "PLKLinkTokenConfiguration",
+ "printedName": "PLKLinkTokenConfiguration",
"children": [
{
"kind": "Var",
@@ -54597,14 +49724,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
}
],
"declKind": "Var",
- "usr": "s:So26PLKOAuthNonceConfigurationC7LinkKitE7toSwiftAC05OAuthbC0Vvp",
- "mangledName": "$sSo26PLKOAuthNonceConfigurationC7LinkKitE7toSwiftAC05OAuthbC0Vvp",
+ "usr": "s:So25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvp",
+ "mangledName": "$sSo25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvp",
"moduleName": "LinkKit",
"isOpen": true,
"isFromExtension": true,
@@ -54616,14 +49743,14 @@
"children": [
{
"kind": "TypeNominal",
- "name": "OAuthNonceConfiguration",
- "printedName": "LinkKit.OAuthNonceConfiguration",
- "usr": "s:7LinkKit23OAuthNonceConfigurationV"
+ "name": "LinkTokenConfiguration",
+ "printedName": "LinkKit.LinkTokenConfiguration",
+ "usr": "s:7LinkKit0A18TokenConfigurationV"
}
],
"declKind": "Accessor",
- "usr": "s:So26PLKOAuthNonceConfigurationC7LinkKitE7toSwiftAC05OAuthbC0Vvg",
- "mangledName": "$sSo26PLKOAuthNonceConfigurationC7LinkKitE7toSwiftAC05OAuthbC0Vvg",
+ "usr": "s:So25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvg",
+ "mangledName": "$sSo25PLKLinkTokenConfigurationC7LinkKitE7toSwiftAC0dbC0Vvg",
"moduleName": "LinkKit",
"isOpen": true,
"isFromExtension": true,
@@ -54633,10 +49760,10 @@
}
],
"declKind": "Class",
- "usr": "c:objc(cs)PLKOAuthNonceConfiguration",
+ "usr": "c:objc(cs)PLKLinkTokenConfiguration",
"moduleName": "LinkKit",
"isOpen": true,
- "objc_name": "PLKOAuthNonceConfiguration",
+ "objc_name": "PLKLinkTokenConfiguration",
"declAttributes": [
"ObjC",
"Dynamic"
@@ -54818,2525 +49945,4357 @@
"mangledName": "$sSH"
}
]
- },
- {
- "kind": "TypeDecl",
- "name": "PLKLinkPublicKeyConfiguration",
- "printedName": "PLKLinkPublicKeyConfiguration",
- "children": [
- {
- "kind": "Var",
- "name": "toSwift",
- "printedName": "toSwift",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ],
- "declKind": "Var",
- "usr": "s:So29PLKLinkPublicKeyConfigurationC7LinkKitE7toSwifts6ResultOyAC0ebcD0VSo7NSErrorCGvp",
- "mangledName": "$sSo29PLKLinkPublicKeyConfigurationC7LinkKitE7toSwifts6ResultOyAC0ebcD0VSo7NSErrorCGvp",
- "moduleName": "LinkKit",
- "isOpen": true,
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LinkPublicKeyConfiguration",
- "printedName": "LinkKit.LinkPublicKeyConfiguration",
- "usr": "s:7LinkKit0A22PublicKeyConfigurationV"
- },
- {
- "kind": "TypeNominal",
- "name": "NSError",
- "printedName": "Foundation.NSError",
- "usr": "c:objc(cs)NSError"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So29PLKLinkPublicKeyConfigurationC7LinkKitE7toSwifts6ResultOyAC0ebcD0VSo7NSErrorCGvg",
- "mangledName": "$sSo29PLKLinkPublicKeyConfigurationC7LinkKitE7toSwifts6ResultOyAC0ebcD0VSo7NSErrorCGvg",
- "moduleName": "LinkKit",
- "isOpen": true,
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)PLKLinkPublicKeyConfiguration",
- "moduleName": "LinkKit",
- "isOpen": true,
- "objc_name": "PLKLinkPublicKeyConfiguration",
- "declAttributes": [
- "ObjC",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObservingPublishing",
- "printedName": "_KeyValueCodingAndObservingPublishing",
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
- },
- {
- "kind": "Conformance",
- "name": "_KeyValueCodingAndObserving",
- "printedName": "_KeyValueCodingAndObserving",
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- }
- ]
}
],
"json_format_version": 8
},
"ConstValues": [
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/PresentationMethod.swift",
+ "kind": "BooleanLiteral",
+ "offset": 523,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2763,
+ "length": 17,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2771,
+ "length": 1,
+ "value": "\".\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2779,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5662,
+ "length": 6,
+ "value": "\"type\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5694,
+ "length": 6,
+ "value": "\"code\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5662,
+ "length": 6,
+ "value": "\"type\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5694,
+ "length": 6,
+ "value": "\"code\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5755,
+ "length": 17,
+ "value": "\"INVALID_REQUEST\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5818,
+ "length": 15,
+ "value": "\"INVALID_INPUT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5883,
+ "length": 19,
+ "value": "\"INSTITUTION_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 5953,
+ "length": 21,
+ "value": "\"RATE_LIMIT_EXCEEDED\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6016,
+ "length": 11,
+ "value": "\"API_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6070,
+ "length": 12,
+ "value": "\"ITEM_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6125,
+ "length": 12,
+ "value": "\"AUTH_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6187,
+ "length": 20,
+ "value": "\"ASSET_REPORT_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6249,
+ "length": 10,
+ "value": "\"INTERNAL\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 11798,
+ "length": 32,
+ "value": "\"BANK_INCOME_INSIGHTS_COMPLETED\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 11873,
+ "length": 13,
+ "value": "\"CLOSE_OAUTH\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 11924,
+ "length": 7,
+ "value": "\"ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 11968,
+ "length": 6,
+ "value": "\"EXIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12016,
+ "length": 12,
+ "value": "\"FAIL_OAUTH\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12068,
+ "length": 9,
+ "value": "\"HANDOFF\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12139,
+ "length": 34,
+ "value": "\"IDENTITY_VERIFICATION_START_STEP\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12234,
+ "length": 33,
+ "value": "\"IDENTITY_VERIFICATION_PASS_STEP\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12328,
+ "length": 33,
+ "value": "\"IDENTITY_VERIFICATION_FAIL_STEP\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12431,
+ "length": 43,
+ "value": "\"IDENTITY_VERIFICATION_PENDING_REVIEW_STEP\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12547,
+ "length": 46,
+ "value": "\"IDENTITY_VERIFICATION_PENDING_REVIEW_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12659,
+ "length": 38,
+ "value": "\"IDENTITY_VERIFICATION_CREATE_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12763,
+ "length": 38,
+ "value": "\"IDENTITY_VERIFICATION_RESUME_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12865,
+ "length": 36,
+ "value": "\"IDENTITY_VERIFICATION_PASS_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 12965,
+ "length": 36,
+ "value": "\"IDENTITY_VERIFICATION_FAIL_SESSION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13060,
+ "length": 31,
+ "value": "\"IDENTITY_VERIFICATION_OPEN_UI\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13152,
+ "length": 33,
+ "value": "\"IDENTITY_VERIFICATION_RESUME_UI\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13245,
+ "length": 32,
+ "value": "\"IDENTITY_VERIFICATION_CLOSE_UI\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13334,
+ "length": 28,
+ "value": "\"MATCHED_SELECT_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13420,
+ "length": 30,
+ "value": "\"MATCHED_SELECT_VERIFY_METHOD\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13487,
+ "length": 6,
+ "value": "\"OPEN\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13537,
+ "length": 15,
+ "value": "\"OPEN_MY_PLAID\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13594,
+ "length": 12,
+ "value": "\"OPEN_OAUTH\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13656,
+ "length": 20,
+ "value": "\"SEARCH_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13734,
+ "length": 29,
+ "value": "\"SELECT_DEGRADED_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13817,
+ "length": 25,
+ "value": "\"SELECT_DOWN_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13900,
+ "length": 29,
+ "value": "\"SELECT_FILTERED_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 13979,
+ "length": 20,
+ "value": "\"SELECT_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14043,
+ "length": 14,
+ "value": "\"SELECT_BRAND\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14104,
+ "length": 18,
+ "value": "\"SELECT_AUTH_TYPE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14174,
+ "length": 23,
+ "value": "\"SUBMIT_ACCOUNT_NUMBER\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14245,
+ "length": 18,
+ "value": "\"SUBMIT_DOCUMENTS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14318,
+ "length": 26,
+ "value": "\"SUBMIT_DOCUMENTS_SUCCESS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14397,
+ "length": 24,
+ "value": "\"SUBMIT_DOCUMENTS_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14473,
+ "length": 23,
+ "value": "\"SUBMIT_ROUTING_NUMBER\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14542,
+ "length": 17,
+ "value": "\"VIEW_DATA_TYPES\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14603,
+ "length": 14,
+ "value": "\"SUBMIT_PHONE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14665,
+ "length": 19,
+ "value": "\"SKIP_SUBMIT_PHONE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14728,
+ "length": 14,
+ "value": "\"VERIFY_PHONE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14792,
+ "length": 20,
+ "value": "\"SUBMIT_CREDENTIALS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14854,
+ "length": 12,
+ "value": "\"SUBMIT_MFA\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14913,
+ "length": 17,
+ "value": "\"TRANSITION_VIEW\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/EventName.swift",
+ "kind": "StringLiteral",
+ "offset": 14984,
+ "length": 25,
+ "value": "\"CONNECT_NEW_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 778,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1342,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 1791,
+ "length": 52,
+ "value": "\"Transitioning from \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 1822,
+ "length": 2,
+ "value": "\" to \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 1837,
+ "length": 4,
+ "value": "\" pane\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1870,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2110,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2982,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/PlaidLinkViewController.swift",
"kind": "StringLiteral",
"offset": 329,
"length": 23,
"value": "\"LinkKit.PlaidLinkViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/SearchAndSelectViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AccountSubtype.swift",
+ "kind": "StringLiteral",
+ "offset": 2593,
+ "length": 24,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AccountSubtype.swift",
+ "kind": "StringLiteral",
+ "offset": 2601,
+ "length": 1,
+ "value": "\".\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AccountSubtype.swift",
+ "kind": "StringLiteral",
+ "offset": 2616,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 764,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 1061,
+ "length": 36,
+ "value": "\"Can transition on the Main Thread.\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 1993,
+ "offset": 1275,
"length": 12,
- "value": "\"selectCell\""
+ "value": "\"layoutView\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/SearchAndSelectViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 72,
- "length": 29,
- "value": "\"LinkKit.SearchAndSelectViewController\""
+ "offset": 2436,
+ "length": 14,
+ "value": "\"PushOutgoing\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/SearchAndSelectViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "Array",
+ "offset": 2516,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 72,
- "length": 29,
- "value": "\"LinkKit.SearchAndSelectViewController\""
+ "offset": 2800,
+ "length": 14,
+ "value": "\"PushIncoming\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 3208,
+ "length": 13,
+ "value": "\"PopOutgoing\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "Array",
+ "offset": 3287,
+ "length": 2,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 3572,
+ "length": 13,
+ "value": "\"PopIncoming\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "Array",
"offset": 4967,
"length": 2,
"value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5152,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5205,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5214,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5225,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5235,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5622,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5838,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6001,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 6806,
+ "length": 15,
+ "value": "\"scrollContent\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 7026,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7371,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 7568,
+ "length": 23,
+ "value": "\"fixedFooterScrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7659,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 7934,
+ "length": 26,
+ "value": "\"fixedFooterScrollContent\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8031,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 8388,
+ "length": 28,
+ "value": "\"fixedFooterFooterContainer\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8489,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 8907,
+ "length": 12,
+ "value": "\"navigation\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9040,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9225,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9409,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9642,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9735,
+ "length": 25,
+ "value": "\"scrollContent2container\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 9962,
+ "length": 26,
+ "value": "\"scrollContent2scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 10110,
+ "length": 12,
+ "value": "\"scrollView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 10315,
+ "length": 17,
+ "value": "\"footerContainer\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10586,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
+ "kind": "StringLiteral",
+ "offset": 10689,
+ "length": 25,
+ "value": "\"footerComponentSafeArea\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/ComponentLayoutPaneViewController.swift",
"kind": "StringLiteral",
"offset": 494,
"length": 27,
"value": "\"LinkKit.ComponentPaneViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 467,
+ "length": 13,
+ "value": "\"Invalid URL\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 519,
+ "length": 14,
+ "value": "\"Missing data\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 578,
+ "length": 24,
+ "value": "\"API Error: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 601,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 657,
+ "length": 34,
+ "value": "\"Decoding Error: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 690,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/SDKReleaseLoader.swift",
+ "kind": "StringLiteral",
+ "offset": 866,
+ "length": 60,
+ "value": "\"https:\/\/api.github.com\/repos\/plaid\/plaid-link-ios\/releases\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "Dictionary",
+ "offset": 589,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 735,
+ "length": 7,
+ "value": "\"Error\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 753,
+ "length": 18,
+ "value": "\"Alert view title\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 838,
+ "length": 83,
+ "value": "\"Your device is not configured to send mail.\nOpen Settings to add a mail account.\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 952,
+ "length": 20,
+ "value": "\"Alert view message\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 1034,
+ "length": 10,
+ "value": "\"Settings\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 1055,
+ "length": 54,
+ "value": "\"Open the device settings from alert with this button\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1235,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 1947,
+ "length": 4,
+ "value": "\"OK\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandlerAction.swift",
+ "kind": "StringLiteral",
+ "offset": 1962,
+ "length": 26,
+ "value": "\"Acknowledge alert button\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2090,
+ "length": 16,
+ "value": "\"ACCOUNTS_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2153,
+ "length": 16,
+ "value": "\"ADDITION_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2212,
+ "length": 12,
+ "value": "\"AUTH_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2271,
+ "length": 16,
+ "value": "\"IDENTITY_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2332,
+ "length": 14,
+ "value": "\"INCOME_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2392,
+ "length": 16,
+ "value": "\"ITEM_GET_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2451,
+ "length": 12,
+ "value": "\"RATE_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/RateLimitErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 2514,
+ "length": 20,
+ "value": "\"TRANSACTIONS_LIMIT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "StringLiteral",
+ "offset": 233,
+ "length": 3,
+ "value": "\".\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 295,
+ "length": 1,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 622,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 739,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 755,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 785,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 902,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 918,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "IntegerLiteral",
+ "offset": 948,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/SemanticVersion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1728,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "StringLiteral",
+ "offset": 871,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
"kind": "IntegerLiteral",
"offset": 1333,
"length": 2,
"value": "16"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
"kind": "IntegerLiteral",
"offset": 1345,
"length": 2,
"value": "16"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
- "kind": "IntegerLiteral",
- "offset": 1735,
- "length": 2,
- "value": "54"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1735,
+ "length": 2,
+ "value": "54"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1747,
+ "length": 2,
+ "value": "20"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2190,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2251,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3779,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4505,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "kind": "StringLiteral",
+ "offset": 271,
+ "length": 24,
+ "value": "\"LinkKit.EmbeddedSearchModuleView\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ApiErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 1078,
+ "length": 23,
+ "value": "\"INTERNAL_SERVER_ERROR\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ApiErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 1153,
+ "length": 21,
+ "value": "\"PLANNED_MAINTENANCE\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "IntegerLiteral",
+ "offset": 576,
+ "length": 2,
+ "value": "15"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "IntegerLiteral",
+ "offset": 608,
+ "length": 1,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "IntegerLiteral",
+ "offset": 687,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "StringLiteral",
+ "offset": 2119,
+ "length": 66,
+ "value": "\"Returning \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "StringLiteral",
+ "offset": 2152,
+ "length": 3,
+ "value": "\" for view model \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/PaneFactory.swift",
+ "kind": "StringLiteral",
+ "offset": 2184,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2824,
+ "length": 20,
+ "value": "\"requires_questions\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2895,
+ "length": 21,
+ "value": "\"requires_selections\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2961,
+ "length": 15,
+ "value": "\"requires_code\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3021,
+ "length": 15,
+ "value": "\"choose_device\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3088,
+ "length": 22,
+ "value": "\"requires_credentials\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3162,
+ "length": 23,
+ "value": "\"institution_not_found\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3242,
+ "length": 28,
+ "value": "\"requires_account_selection\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ExitStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 3323,
+ "length": 25,
+ "value": "\"continue_to_third_party\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Plaid.swift",
+ "kind": "StringLiteral",
+ "offset": 1086,
+ "length": 112,
+ "value": "\"linkTokenConfiguration.token: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Plaid.swift",
+ "kind": "StringLiteral",
+ "offset": 1148,
+ "length": 2,
+ "value": "\" is invalid, it must contain an environment name.\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Plaid.swift",
+ "kind": "StringLiteral",
+ "offset": 1723,
+ "length": 16,
+ "value": "\"com.plaid.link\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AuthErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 1019,
+ "length": 19,
+ "value": "\"PRODUCT_NOT_READY\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AuthErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 1091,
+ "length": 22,
+ "value": "\"VERIFICATION_EXPIRED\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 373,
+ "length": 10,
+ "value": "\"html_url\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 407,
+ "length": 10,
+ "value": "\"tag_name\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 482,
+ "length": 14,
+ "value": "\"published_at\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 373,
+ "length": 10,
+ "value": "\"html_url\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 407,
+ "length": 10,
+ "value": "\"tag_name\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "kind": "StringLiteral",
+ "offset": 482,
+ "length": 14,
+ "value": "\"published_at\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
"kind": "IntegerLiteral",
- "offset": 1747,
+ "offset": 995,
"length": 2,
- "value": "20"
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchModule.swift",
- "kind": "StringLiteral",
- "offset": 271,
- "length": 24,
- "value": "\"LinkKit.EmbeddedSearchModuleView\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1007,
+ "length": 2,
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
"kind": "BooleanLiteral",
- "offset": 9276,
- "length": 5,
- "value": "false"
+ "offset": 2052,
+ "length": 4,
+ "value": "true"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "Array",
- "offset": 15565,
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2636,
"length": 2,
- "value": "[]"
+ "value": "24"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 25183,
- "length": 12,
- "value": "\"event_name\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2648,
+ "length": 2,
+ "value": "24"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/SDKModalViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 25183,
- "length": 12,
- "value": "\"event_name\""
+ "offset": 3440,
+ "length": 16,
+ "value": "\"Primary button\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29672,
- "length": 8,
- "value": "\"assets\""
+ "offset": 595,
+ "length": 30,
+ "value": "\"https:\/\/production.plaid.com\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29718,
- "length": 6,
- "value": "\"auth\""
+ "offset": 686,
+ "length": 31,
+ "value": "\"https:\/\/development.plaid.com\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29771,
- "length": 16,
- "value": "\"deposit_switch\""
+ "offset": 774,
+ "length": 27,
+ "value": "\"https:\/\/sandbox.plaid.com\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29829,
- "length": 10,
- "value": "\"identity\""
+ "offset": 1012,
+ "length": 12,
+ "value": "\"production\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29879,
- "length": 8,
- "value": "\"income\""
+ "offset": 1071,
+ "length": 13,
+ "value": "\"development\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Environment.swift",
"kind": "StringLiteral",
- "offset": 29932,
- "length": 13,
- "value": "\"investments\""
+ "offset": 1127,
+ "length": 9,
+ "value": "\"sandbox\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 29990,
- "length": 13,
- "value": "\"liabilities\""
+ "offset": 304,
+ "length": 7,
+ "value": "\"Plaid\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 30054,
- "length": 20,
- "value": "\"liabilities_report\""
+ "offset": 342,
+ "length": 9,
+ "value": "\"LinkKit\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 30125,
+ "offset": 510,
"length": 20,
- "value": "\"payment_initiation\""
+ "value": "\"ReactNativeLinkSdk\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 30191,
- "length": 14,
- "value": "\"transactions\""
+ "offset": 830,
+ "length": 8,
+ "value": "\"%@\/%@ \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 32362,
- "length": 32,
- "value": "\"pending_automatic_verification\""
+ "offset": 989,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 32452,
+ "offset": 1045,
"length": 29,
- "value": "\"pending_manual_verification\""
+ "value": "\"%@%@%@\/%@(%@) %@-%@ (%@ %@)\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 32530,
- "length": 19,
- "value": "\"manually_verified\""
+ "offset": 1293,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
"kind": "StringLiteral",
- "offset": 32589,
- "length": 9,
- "value": "\"unknown\""
+ "offset": 1357,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37682,
- "length": 20,
- "value": "\"requires_questions\""
+ "offset": 826,
+ "length": 56,
+ "value": "\"Failed to decode MFAType from rawValue: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37753,
- "length": 21,
- "value": "\"requires_selections\""
+ "offset": 881,
+ "length": 1,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37819,
- "length": 15,
- "value": "\"requires_code\""
+ "offset": 1762,
+ "length": 6,
+ "value": "\"code\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37879,
- "length": 15,
- "value": "\"choose_device\""
+ "offset": 1808,
+ "length": 8,
+ "value": "\"device\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 37946,
- "length": 22,
- "value": "\"requires_credentials\""
+ "offset": 1859,
+ "length": 11,
+ "value": "\"questions\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/MFAType.swift",
"kind": "StringLiteral",
- "offset": 38020,
- "length": 23,
- "value": "\"institution_not_found\""
+ "offset": 1914,
+ "length": 12,
+ "value": "\"selections\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
"kind": "StringLiteral",
- "offset": 38100,
- "length": 28,
- "value": "\"requires_account_selection\""
+ "offset": 407,
+ "length": 39,
+ "value": "\"init(frame:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
"kind": "StringLiteral",
- "offset": 38181,
- "length": 25,
- "value": "\"continue_to_third_party\""
+ "offset": 542,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 51838,
- "length": 32,
- "value": "\"BANK_INCOME_INSIGHTS_COMPLETED\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 706,
+ "length": 3,
+ "value": "118"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 51913,
- "length": 13,
- "value": "\"CLOSE_OAUTH\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 712,
+ "length": 3,
+ "value": "255"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 51964,
- "length": 7,
- "value": "\"ERROR\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 724,
+ "length": 3,
+ "value": "118"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52008,
- "length": 6,
- "value": "\"EXIT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 730,
+ "length": 3,
+ "value": "255"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52056,
- "length": 12,
- "value": "\"FAIL_OAUTH\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 741,
+ "length": 3,
+ "value": "118"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52108,
- "length": 9,
- "value": "\"HANDOFF\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 747,
+ "length": 3,
+ "value": "255"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52179,
- "length": 34,
- "value": "\"IDENTITY_VERIFICATION_START_STEP\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 759,
+ "length": 4,
+ "value": "0.20"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52274,
- "length": 33,
- "value": "\"IDENTITY_VERIFICATION_PASS_STEP\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 798,
+ "length": 1,
+ "value": "3"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52368,
- "length": 33,
- "value": "\"IDENTITY_VERIFICATION_FAIL_STEP\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 835,
+ "length": 3,
+ "value": "8.0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52471,
- "length": 43,
- "value": "\"IDENTITY_VERIFICATION_PENDING_REVIEW_STEP\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1385,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52587,
- "length": 46,
- "value": "\"IDENTITY_VERIFICATION_PENDING_REVIEW_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1480,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52699,
- "length": 38,
- "value": "\"IDENTITY_VERIFICATION_CREATE_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2805,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52803,
- "length": 38,
- "value": "\"IDENTITY_VERIFICATION_RESUME_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3196,
+ "length": 4,
+ "value": "0.49"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 52905,
- "length": 36,
- "value": "\"IDENTITY_VERIFICATION_PASS_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3350,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53005,
- "length": 36,
- "value": "\"IDENTITY_VERIFICATION_FAIL_SESSION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3457,
+ "length": 1,
+ "value": "4"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53100,
- "length": 31,
- "value": "\"IDENTITY_VERIFICATION_OPEN_UI\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3525,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53192,
- "length": 33,
- "value": "\"IDENTITY_VERIFICATION_RESUME_UI\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3699,
+ "length": 2,
+ "value": "12"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53285,
- "length": 32,
- "value": "\"IDENTITY_VERIFICATION_CLOSE_UI\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3955,
+ "length": 2,
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53374,
- "length": 28,
- "value": "\"MATCHED_SELECT_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4114,
+ "length": 1,
+ "value": "4"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53460,
- "length": 30,
- "value": "\"MATCHED_SELECT_VERIFY_METHOD\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4184,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53527,
- "length": 6,
- "value": "\"OPEN\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4361,
+ "length": 2,
+ "value": "12"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53577,
- "length": 15,
- "value": "\"OPEN_MY_PLAID\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4621,
+ "length": 2,
+ "value": "32"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53634,
- "length": 12,
- "value": "\"OPEN_OAUTH\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4777,
+ "length": 1,
+ "value": "4"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53696,
- "length": 20,
- "value": "\"SEARCH_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4846,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53774,
- "length": 29,
- "value": "\"SELECT_DEGRADED_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5023,
+ "length": 2,
+ "value": "12"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53857,
- "length": 25,
- "value": "\"SELECT_DOWN_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5310,
+ "length": 3,
+ "value": "-32"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 53940,
- "length": 29,
- "value": "\"SELECT_FILTERED_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5384,
+ "length": 2,
+ "value": "32"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54019,
- "length": 20,
- "value": "\"SELECT_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5880,
+ "length": 3,
+ "value": "0.2"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54083,
- "length": 14,
- "value": "\"SELECT_BRAND\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5978,
+ "length": 4,
+ "value": "0.95"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54144,
- "length": 18,
- "value": "\"SELECT_AUTH_TYPE\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5987,
+ "length": 4,
+ "value": "0.95"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54214,
- "length": 23,
- "value": "\"SUBMIT_ACCOUNT_NUMBER\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "FloatLiteral",
+ "offset": 6220,
+ "length": 3,
+ "value": "0.2"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54285,
- "length": 18,
- "value": "\"SUBMIT_DOCUMENTS\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7959,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54358,
- "length": 26,
- "value": "\"SUBMIT_DOCUMENTS_SUCCESS\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8144,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 54437,
- "length": 24,
- "value": "\"SUBMIT_DOCUMENTS_ERROR\""
+ "offset": 823,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54513,
- "length": 23,
- "value": "\"SUBMIT_ROUTING_NUMBER\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1390,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54582,
- "length": 17,
- "value": "\"VIEW_DATA_TYPES\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1664,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 54643,
- "length": 14,
- "value": "\"SUBMIT_PHONE\""
+ "offset": 356,
+ "length": 22,
+ "value": "\"LinkKit.TodoPaneViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
"kind": "StringLiteral",
- "offset": 54705,
- "length": 19,
- "value": "\"SKIP_SUBMIT_PHONE\""
+ "offset": 376,
+ "length": 11,
+ "value": "\"RNLinksdk\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
"kind": "StringLiteral",
- "offset": 54768,
- "length": 14,
- "value": "\"VERIFY_PHONE\""
+ "offset": 536,
+ "length": 12,
+ "value": "\"sdkVersion\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
"kind": "StringLiteral",
- "offset": 54832,
- "length": 20,
- "value": "\"SUBMIT_CREDENTIALS\""
+ "offset": 965,
+ "length": 15,
+ "value": "\"0.0.0-unknown\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54894,
- "length": 12,
- "value": "\"SUBMIT_MFA\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "Dictionary",
+ "offset": 483,
+ "length": 3,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 54953,
- "length": 17,
- "value": "\"TRANSITION_VIEW\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2661,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 55024,
- "length": 25,
- "value": "\"CONNECT_NEW_INSTITUTION\""
+ "offset": 3050,
+ "length": 31,
+ "value": "\"The input has to be a number.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 62943,
- "length": 12,
- "value": "\"ACCEPT_TOS\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3142,
+ "length": 1,
+ "value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 62997,
- "length": 11,
- "value": "\"CONNECTED\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3189,
+ "length": 1,
+ "value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63048,
- "length": 9,
- "value": "\"CONSENT\""
+ "offset": 3337,
+ "length": 52,
+ "value": "\"The input has to be a number between 0.00 and 1.00\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 63100,
- "length": 12,
- "value": "\"CREDENTIAL\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "Array",
+ "offset": 3730,
+ "length": 2,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63161,
- "length": 19,
- "value": "\"DATA_TRANSPARENCY\""
+ "offset": 5639,
+ "length": 31,
+ "value": "\"The input has to be a number.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 63236,
- "length": 27,
- "value": "\"DATA_TRANSPARENCY_CONSENT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "Array",
+ "offset": 6246,
+ "length": 2,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63319,
- "length": 26,
- "value": "\"DOCUMENTARY_VERIFICATION\""
+ "offset": 6299,
+ "length": 86,
+ "value": "\"The provided regex: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63383,
- "length": 7,
- "value": "\"ERROR\""
+ "offset": 6339,
+ "length": 2,
+ "value": "\" is invalid. This rule will count as passing.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63427,
- "length": 6,
- "value": "\"EXIT\""
+ "offset": 6536,
+ "length": 118,
+ "value": "\"Could not check that \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63474,
- "length": 11,
- "value": "\"KYC_CHECK\""
+ "offset": 6566,
+ "length": 7,
+ "value": "\" matches \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63529,
- "length": 14,
- "value": "\"SELFIE_CHECK\""
+ "offset": 6591,
+ "length": 3,
+ "value": "\" due to NSRange.init failing. This rule will count as passing.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 63583,
- "length": 9,
- "value": "\"LOADING\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
+ "kind": "Array",
+ "offset": 6774,
+ "length": 2,
+ "value": "[]"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63639,
- "length": 17,
- "value": "\"MATCHED_CONSENT\""
+ "offset": 7312,
+ "length": 208,
+ "value": "\"Text Input with ID: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63706,
- "length": 20,
- "value": "\"MATCHED_CREDENTIAL\""
+ "offset": 7338,
+ "length": 5,
+ "value": "\" could not be checked for equality with Text Input of ID: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63769,
- "length": 13,
- "value": "\"MATCHED_MFA\""
+ "offset": 7424,
+ "length": 1,
+ "value": "\", due to no matching Text Input in \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
"kind": "StringLiteral",
- "offset": 63818,
- "length": 5,
- "value": "\"MFA\""
+ "offset": 7485,
+ "length": 1,
+ "value": "\". This rule will count as passing.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/LinkOOPWebViewController.swift",
"kind": "StringLiteral",
- "offset": 63863,
- "length": 9,
- "value": "\"NUMBERS\""
+ "offset": 572,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/LinkOOPWebViewController.swift",
"kind": "StringLiteral",
- "offset": 63929,
- "length": 28,
- "value": "\"NUMBERS_SELECT_INSTITUTION\""
+ "offset": 148,
+ "length": 24,
+ "value": "\"LinkKit.LinkOOPWebViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/LinkOOPWebViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4671,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InstitutionErrorCode.swift",
"kind": "StringLiteral",
- "offset": 63995,
- "length": 7,
- "value": "\"OAUTH\""
+ "offset": 1554,
+ "length": 18,
+ "value": "\"INSTITUTION_DOWN\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InstitutionErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64044,
- "length": 11,
- "value": "\"RECAPTCHA\""
+ "offset": 1630,
+ "length": 28,
+ "value": "\"INSTITUTION_NOT_RESPONDING\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InstitutionErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64097,
- "length": 12,
- "value": "\"RISK_CHECK\""
+ "offset": 1715,
+ "length": 27,
+ "value": "\"INSTITUTION_NOT_AVAILABLE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InstitutionErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64151,
- "length": 11,
- "value": "\"SCREENING\""
+ "offset": 1804,
+ "length": 33,
+ "value": "\"INSTITUTION_NO_LONGER_SUPPORTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64208,
+ "offset": 1995,
"length": 16,
- "value": "\"SELECT_ACCOUNT\""
+ "value": "\"MISSING_FIELDS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64271,
- "length": 18,
- "value": "\"SELECT_AUTH_TYPE\""
+ "offset": 2058,
+ "length": 16,
+ "value": "\"UNKNOWN_FIELDS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64333,
- "length": 14,
- "value": "\"SUBMIT_PHONE\""
+ "offset": 2120,
+ "length": 15,
+ "value": "\"INVALID_FIELD\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64391,
+ "offset": 2180,
"length": 14,
- "value": "\"VERIFY_PHONE\""
+ "value": "\"INVALID_BODY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64460,
- "length": 26,
- "value": "\"SELECT_SAVED_INSTITUTION\""
+ "offset": 2242,
+ "length": 17,
+ "value": "\"INVALID_HEADERS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64537,
- "length": 22,
- "value": "\"SELECT_SAVED_ACCOUNT\""
+ "offset": 2301,
+ "length": 11,
+ "value": "\"NOT_FOUND\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidRequestErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64603,
+ "offset": 2357,
"length": 14,
- "value": "\"SELECT_BRAND\""
- },
- {
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 64667,
- "length": 20,
- "value": "\"SELECT_INSTITUTION\""
- },
- {
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 64735,
- "length": 18,
- "value": "\"SUBMIT_DOCUMENTS\""
+ "value": "\"SANDBOX_ONLY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64808,
+ "offset": 6098,
"length": 26,
- "value": "\"SUBMIT_DOCUMENTS_SUCCESS\""
+ "value": "\"INSUFFICIENT_CREDENTIALS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64887,
- "length": 24,
- "value": "\"SUBMIT_DOCUMENTS_ERROR\""
+ "offset": 6176,
+ "length": 21,
+ "value": "\"INVALID_CREDENTIALS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 64959,
- "length": 18,
- "value": "\"UPLOAD_DOCUMENTS\""
+ "offset": 6241,
+ "length": 13,
+ "value": "\"INVALID_MFA\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 65019,
- "length": 12,
- "value": "\"VERIFY_SMS\""
+ "offset": 6305,
+ "length": 21,
+ "value": "\"INVALID_SEND_METHOD\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 69560,
- "length": 6,
- "value": "\"code\""
+ "offset": 6382,
+ "length": 26,
+ "value": "\"INVALID_UPDATED_USERNAME\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 69606,
- "length": 8,
- "value": "\"device\""
+ "offset": 6452,
+ "length": 13,
+ "value": "\"ITEM_LOCKED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 69657,
- "length": 11,
- "value": "\"questions\""
+ "offset": 6516,
+ "length": 21,
+ "value": "\"ITEM_LOGIN_REQUIRED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 69712,
- "length": 12,
- "value": "\"selections\""
+ "offset": 6582,
+ "length": 15,
+ "value": "\"ITEM_NO_ERROR\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "BooleanLiteral",
- "offset": 70232,
- "length": 4,
- "value": "true"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 6647,
+ "length": 20,
+ "value": "\"ITEM_NOT_SUPPORTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 75909,
- "length": 6,
- "value": "\"type\""
+ "offset": 6724,
+ "length": 27,
+ "value": "\"INCORRECT_DEPOSIT_AMOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 75941,
- "length": 6,
- "value": "\"code\""
+ "offset": 6802,
+ "length": 21,
+ "value": "\"USER_SETUP_REQUIRED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 75909,
- "length": 6,
- "value": "\"type\""
+ "offset": 6872,
+ "length": 19,
+ "value": "\"MFA_NOT_SUPPORTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 75941,
- "length": 6,
- "value": "\"code\""
+ "offset": 6935,
+ "length": 13,
+ "value": "\"NO_ACCOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76002,
- "length": 17,
- "value": "\"INVALID_REQUEST\""
+ "offset": 6996,
+ "length": 18,
+ "value": "\"NO_AUTH_ACCOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76065,
- "length": 15,
- "value": "\"INVALID_INPUT\""
+ "offset": 7068,
+ "length": 24,
+ "value": "\"NO_INVESTMENT_ACCOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76130,
- "length": 19,
- "value": "\"INSTITUTION_ERROR\""
+ "offset": 7145,
+ "length": 23,
+ "value": "\"NO_LIABILITY_ACCOUNTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76200,
- "length": 21,
- "value": "\"RATE_LIMIT_EXCEEDED\""
+ "offset": 7217,
+ "length": 19,
+ "value": "\"PRODUCT_NOT_READY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76263,
- "length": 11,
- "value": "\"API_ERROR\""
+ "offset": 7290,
+ "length": 24,
+ "value": "\"PRODUCTS_NOT_SUPPORTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ItemErrorCode.swift",
"kind": "StringLiteral",
- "offset": 76317,
- "length": 12,
- "value": "\"ITEM_ERROR\""
+ "offset": 7366,
+ "length": 22,
+ "value": "\"INSTANT_MATCH_FAILED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/LinkEvent.swift",
"kind": "StringLiteral",
- "offset": 76372,
+ "offset": 1110,
"length": 12,
- "value": "\"AUTH_ERROR\""
+ "value": "\"event_name\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/LinkEvent.swift",
"kind": "StringLiteral",
- "offset": 76434,
- "length": 20,
- "value": "\"ASSET_REPORT_ERROR\""
+ "offset": 1110,
+ "length": 12,
+ "value": "\"event_name\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 76496,
- "length": 10,
- "value": "\"INTERNAL\""
+ "offset": 2438,
+ "length": 8,
+ "value": "\"assets\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78486,
- "length": 16,
- "value": "\"MISSING_FIELDS\""
+ "offset": 2484,
+ "length": 6,
+ "value": "\"auth\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78549,
+ "offset": 2537,
"length": 16,
- "value": "\"UNKNOWN_FIELDS\""
+ "value": "\"deposit_switch\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78611,
- "length": 15,
- "value": "\"INVALID_FIELD\""
+ "offset": 2595,
+ "length": 10,
+ "value": "\"identity\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78671,
- "length": 14,
- "value": "\"INVALID_BODY\""
+ "offset": 2645,
+ "length": 8,
+ "value": "\"income\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78733,
- "length": 17,
- "value": "\"INVALID_HEADERS\""
+ "offset": 2698,
+ "length": 13,
+ "value": "\"investments\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78792,
- "length": 11,
- "value": "\"NOT_FOUND\""
+ "offset": 2756,
+ "length": 13,
+ "value": "\"liabilities\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 78848,
- "length": 14,
- "value": "\"SANDBOX_ONLY\""
+ "offset": 2820,
+ "length": 20,
+ "value": "\"liabilities_report\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 81867,
- "length": 18,
- "value": "\"INVALID_API_KEYS\""
+ "offset": 2891,
+ "length": 20,
+ "value": "\"payment_initiation\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/Product.swift",
"kind": "StringLiteral",
- "offset": 81942,
- "length": 26,
- "value": "\"UNAUTHORIZED_ENVIRONMENT\""
+ "offset": 2957,
+ "length": 14,
+ "value": "\"transactions\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkKitWorkflowBridge.swift",
"kind": "StringLiteral",
- "offset": 82020,
- "length": 22,
- "value": "\"INVALID_ACCESS_TOKEN\""
+ "offset": 4717,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 82094,
- "length": 22,
- "value": "\"INVALID_PUBLIC_TOKEN\""
+ "offset": 578,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 82164,
- "length": 17,
- "value": "\"INVALID_PRODUCT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 997,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 82231,
- "length": 20,
- "value": "\"INVALID_ACCOUNT_ID\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1295,
+ "length": 2,
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 82303,
- "length": 21,
- "value": "\"INVALID_INSTITUTION\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1374,
+ "length": 2,
+ "value": "48"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 82385,
- "length": 32,
- "value": "\"TOO_MANY_VERIFICATION_ATTEMPTS\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1730,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
"kind": "StringLiteral",
- "offset": 84492,
- "length": 16,
- "value": "\"ACCOUNTS_LIMIT\""
+ "offset": 108,
+ "length": 25,
+ "value": "\"LinkKit.LoadingPaneViewController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 84555,
- "length": 16,
- "value": "\"ADDITION_LIMIT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/LinkTokenConfiguration.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1703,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 84614,
- "length": 12,
- "value": "\"AUTH_LIMIT\""
+ "offset": 2186,
+ "length": 218,
+ "value": "\"The Handler is being deinitialized before Link has completed or been exited. Did you forget to strongly reference the Handler object returned by `Plaid.create`?\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 84673,
- "length": 16,
- "value": "\"IDENTITY_LIMIT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6205,
+ "length": 3,
+ "value": "390"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
- "kind": "StringLiteral",
- "offset": 84734,
- "length": 14,
- "value": "\"INCOME_LIMIT\""
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6218,
+ "length": 3,
+ "value": "690"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 84794,
- "length": 16,
- "value": "\"ITEM_GET_LIMIT\""
+ "offset": 10058,
+ "length": 39,
+ "value": "\"Ignoring onMailto on \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 84853,
- "length": 12,
- "value": "\"RATE_LIMIT\""
+ "offset": 10088,
+ "length": 1,
+ "value": "\" \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 84916,
- "length": 20,
- "value": "\"TRANSACTIONS_LIMIT\""
+ "offset": 10096,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 85999,
- "length": 23,
- "value": "\"INTERNAL_SERVER_ERROR\""
+ "offset": 10484,
+ "length": 50,
+ "value": "\"Link requires \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 86074,
- "length": 21,
- "value": "\"PLANNED_MAINTENANCE\""
+ "offset": 10507,
+ "length": 2,
+ "value": "\" to be a non-empty string.\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92178,
- "length": 26,
- "value": "\"INSUFFICIENT_CREDENTIALS\""
+ "offset": 10789,
+ "length": 53,
+ "value": "\"Ignoring pane view model change on \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92256,
- "length": 21,
- "value": "\"INVALID_CREDENTIALS\""
+ "offset": 10833,
+ "length": 1,
+ "value": "\" \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92321,
- "length": 13,
- "value": "\"INVALID_MFA\""
+ "offset": 10841,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92385,
- "length": 21,
- "value": "\"INVALID_SEND_METHOD\""
+ "offset": 12433,
+ "length": 83,
+ "value": "\"Unexpected call to -startSession when state (\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92462,
- "length": 26,
- "value": "\"INVALID_UPDATED_USERNAME\""
+ "offset": 12487,
+ "length": 1,
+ "value": "\") is not .loadingSessionData\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92532,
- "length": 13,
- "value": "\"ITEM_LOCKED\""
+ "offset": 12624,
+ "length": 28,
+ "value": "\"Validation error: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92596,
- "length": 21,
- "value": "\"ITEM_LOGIN_REQUIRED\""
+ "offset": 12651,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92662,
- "length": 15,
- "value": "\"ITEM_NO_ERROR\""
+ "offset": 12685,
+ "length": 31,
+ "value": "\"Using token: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkHandler.swift",
"kind": "StringLiteral",
- "offset": 92727,
- "length": 20,
- "value": "\"ITEM_NOT_SUPPORTED\""
+ "offset": 12715,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 92804,
- "length": 27,
- "value": "\"INCORRECT_DEPOSIT_AMOUNTS\""
+ "offset": 8316,
+ "length": 12,
+ "value": "\"ACCEPT_TOS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 92882,
- "length": 21,
- "value": "\"USER_SETUP_REQUIRED\""
+ "offset": 8370,
+ "length": 11,
+ "value": "\"CONNECTED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 92952,
- "length": 19,
- "value": "\"MFA_NOT_SUPPORTED\""
+ "offset": 8421,
+ "length": 9,
+ "value": "\"CONSENT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93015,
- "length": 13,
- "value": "\"NO_ACCOUNTS\""
+ "offset": 8473,
+ "length": 12,
+ "value": "\"CREDENTIAL\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93076,
- "length": 18,
- "value": "\"NO_AUTH_ACCOUNTS\""
+ "offset": 8534,
+ "length": 19,
+ "value": "\"DATA_TRANSPARENCY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93148,
- "length": 24,
- "value": "\"NO_INVESTMENT_ACCOUNTS\""
+ "offset": 8609,
+ "length": 27,
+ "value": "\"DATA_TRANSPARENCY_CONSENT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93225,
- "length": 23,
- "value": "\"NO_LIABILITY_ACCOUNTS\""
+ "offset": 8692,
+ "length": 26,
+ "value": "\"DOCUMENTARY_VERIFICATION\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93297,
- "length": 19,
- "value": "\"PRODUCT_NOT_READY\""
+ "offset": 8756,
+ "length": 7,
+ "value": "\"ERROR\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93370,
- "length": 24,
- "value": "\"PRODUCTS_NOT_SUPPORTED\""
+ "offset": 8800,
+ "length": 6,
+ "value": "\"EXIT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 93446,
- "length": 22,
- "value": "\"INSTANT_MATCH_FAILED\""
+ "offset": 8847,
+ "length": 11,
+ "value": "\"KYC_CHECK\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 94472,
- "length": 19,
- "value": "\"PRODUCT_NOT_READY\""
+ "offset": 8902,
+ "length": 14,
+ "value": "\"SELFIE_CHECK\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 94544,
- "length": 22,
- "value": "\"VERIFICATION_EXPIRED\""
+ "offset": 8956,
+ "length": 9,
+ "value": "\"LOADING\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97460,
- "length": 21,
- "value": "\"PRODUCT_NOT_ENABLED\""
+ "offset": 9012,
+ "length": 17,
+ "value": "\"MATCHED_CONSENT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97530,
- "length": 18,
- "value": "\"DATA_UNAVAILABLE\""
+ "offset": 9079,
+ "length": 20,
+ "value": "\"MATCHED_CREDENTIAL\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97597,
- "length": 19,
- "value": "\"PRODUCT_NOT_READY\""
+ "offset": 9142,
+ "length": 13,
+ "value": "\"MATCHED_MFA\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97677,
- "length": 32,
- "value": "\"ASSET_REPORT_GENERATION_FAILED\""
+ "offset": 9191,
+ "length": 5,
+ "value": "\"MFA\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97756,
- "length": 16,
- "value": "\"INVALID_PARENT\""
+ "offset": 9236,
+ "length": 9,
+ "value": "\"NUMBERS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97824,
- "length": 22,
- "value": "\"INSIGHTS_NOT_ENABLED\""
+ "offset": 9302,
+ "length": 28,
+ "value": "\"NUMBERS_SELECT_INSTITUTION\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 97908,
- "length": 33,
- "value": "\"INSIGHTS_PREVIOUSLY_NOT_ENABLED\""
+ "offset": 9368,
+ "length": 7,
+ "value": "\"OAUTH\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 99480,
- "length": 18,
- "value": "\"INSTITUTION_DOWN\""
+ "offset": 9417,
+ "length": 11,
+ "value": "\"RECAPTCHA\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 99556,
- "length": 28,
- "value": "\"INSTITUTION_NOT_RESPONDING\""
+ "offset": 9470,
+ "length": 12,
+ "value": "\"RISK_CHECK\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 99641,
- "length": 27,
- "value": "\"INSTITUTION_NOT_AVAILABLE\""
+ "offset": 9524,
+ "length": 11,
+ "value": "\"SCREENING\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Plaid.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 99730,
- "length": 33,
- "value": "\"INSTITUTION_NO_LONGER_SUPPORTED\""
+ "offset": 9581,
+ "length": 16,
+ "value": "\"SELECT_ACCOUNT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 373,
- "length": 10,
- "value": "\"html_url\""
+ "offset": 9644,
+ "length": 18,
+ "value": "\"SELECT_AUTH_TYPE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 407,
- "length": 10,
- "value": "\"tag_name\""
+ "offset": 9706,
+ "length": 14,
+ "value": "\"SUBMIT_PHONE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 482,
+ "offset": 9764,
"length": 14,
- "value": "\"published_at\""
+ "value": "\"VERIFY_PHONE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 373,
- "length": 10,
- "value": "\"html_url\""
+ "offset": 9833,
+ "length": 26,
+ "value": "\"SELECT_SAVED_INSTITUTION\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 407,
- "length": 10,
- "value": "\"tag_name\""
+ "offset": 9910,
+ "length": 22,
+ "value": "\"SELECT_SAVED_ACCOUNT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/SDKValidation\/Updates\/Models\/GithubRelease.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 482,
+ "offset": 9976,
"length": 14,
- "value": "\"published_at\""
+ "value": "\"SELECT_BRAND\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 304,
- "length": 7,
- "value": "\"Plaid\""
+ "offset": 10040,
+ "length": 20,
+ "value": "\"SELECT_INSTITUTION\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 342,
- "length": 9,
- "value": "\"LinkKit\""
+ "offset": 10108,
+ "length": 18,
+ "value": "\"SUBMIT_DOCUMENTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 510,
- "length": 20,
- "value": "\"ReactNativeLinkSdk\""
+ "offset": 10181,
+ "length": 26,
+ "value": "\"SUBMIT_DOCUMENTS_SUCCESS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 830,
- "length": 8,
- "value": "\"%@\/%@ \""
+ "offset": 10260,
+ "length": 24,
+ "value": "\"SUBMIT_DOCUMENTS_ERROR\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 989,
- "length": 2,
- "value": "\"\""
+ "offset": 10332,
+ "length": 18,
+ "value": "\"UPLOAD_DOCUMENTS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/ViewName.swift",
"kind": "StringLiteral",
- "offset": 1045,
- "length": 29,
- "value": "\"%@%@%@\/%@(%@) %@-%@ (%@ %@)\""
+ "offset": 10392,
+ "length": 12,
+ "value": "\"VERIFY_SMS\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/KeyValueService.swift",
"kind": "StringLiteral",
- "offset": 1293,
- "length": 2,
- "value": "\"\""
+ "offset": 148,
+ "length": 30,
+ "value": "\"com.plaid.link.persistent-id\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/LinkHTTPServiceUserAgentProvider.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Services\/KeyValueService.swift",
"kind": "StringLiteral",
- "offset": 1357,
- "length": 2,
- "value": "\"\""
+ "offset": 148,
+ "length": 30,
+ "value": "\"com.plaid.link.persistent-id\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 706,
- "length": 3,
- "value": "118"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3350,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 712,
- "length": 3,
- "value": "255"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3406,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 724,
- "length": 3,
- "value": "118"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3676,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 730,
- "length": 3,
- "value": "255"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4851,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 741,
- "length": 3,
- "value": "118"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5010,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 747,
- "length": 3,
- "value": "255"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid+InternalEquality.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5247,
+ "length": 5,
+ "value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "FloatLiteral",
- "offset": 759,
- "length": 4,
- "value": "0.20"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 792,
+ "length": 68,
+ "value": "\"Failed to decode verification status from rawValue: \""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "IntegerLiteral",
- "offset": 798,
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 859,
"length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchAndSelectView.swift",
- "kind": "FloatLiteral",
- "offset": 835,
- "length": 3,
- "value": "8.0"
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/TodoPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 356,
- "length": 22,
- "value": "\"LinkKit.TodoPaneViewController\""
+ "offset": 1236,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 376,
- "length": 11,
- "value": "\"RNLinksdk\""
+ "offset": 1470,
+ "length": 32,
+ "value": "\"pending_automatic_verification\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 536,
- "length": 12,
- "value": "\"sdkVersion\""
+ "offset": 1551,
+ "length": 29,
+ "value": "\"pending_manual_verification\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ReactNativeLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 965,
- "length": 15,
- "value": "\"0.0.0-unknown\""
- },
- {
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/WorkflowBridges\/TextInputViewModel+Workflow.swift",
- "kind": "Dictionary",
- "offset": 483,
- "length": 3,
- "value": "[]"
+ "offset": 1620,
+ "length": 19,
+ "value": "\"manually_verified\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/LinkOOPWebViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 170,
- "length": 24,
- "value": "\"LinkKit.LinkOOPWebViewController\""
+ "offset": 1923,
+ "length": 32,
+ "value": "\"pending_automatic_verification\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/LoadingPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
"kind": "StringLiteral",
- "offset": 108,
- "length": 25,
- "value": "\"LinkKit.LoadingPaneViewController\""
+ "offset": 2013,
+ "length": 29,
+ "value": "\"pending_manual_verification\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
- "kind": "Dictionary",
- "offset": 3085,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2091,
+ "length": 19,
+ "value": "\"manually_verified\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
- "kind": "Dictionary",
- "offset": 6957,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/VerificationStatus.swift",
+ "kind": "StringLiteral",
+ "offset": 2150,
+ "length": 9,
+ "value": "\"unknown\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 11062,
- "length": 2,
- "value": "\"\""
+ "offset": 2899,
+ "length": 21,
+ "value": "\"PRODUCT_NOT_ENABLED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 11106,
- "length": 16,
- "value": "\"institution_id\""
+ "offset": 2969,
+ "length": 18,
+ "value": "\"DATA_UNAVAILABLE\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
- "kind": "BooleanLiteral",
- "offset": 11272,
- "length": 5,
- "value": "false"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3036,
+ "length": 19,
+ "value": "\"PRODUCT_NOT_READY\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkHandler.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 11319,
- "length": 16,
- "value": "\"select_account\""
+ "offset": 3116,
+ "length": 32,
+ "value": "\"ASSET_REPORT_GENERATION_FAILED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/KeyValueService.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 148,
- "length": 30,
- "value": "\"com.plaid.link.persistent-id\""
+ "offset": 3195,
+ "length": 16,
+ "value": "\"INVALID_PARENT\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Services\/KeyValueService.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 148,
- "length": 30,
- "value": "\"com.plaid.link.persistent-id\""
+ "offset": 3263,
+ "length": 22,
+ "value": "\"INSIGHTS_NOT_ENABLED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkPublicKeyConfiguration+Workflow.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/AssetReportErrorCode.swift",
"kind": "StringLiteral",
- "offset": 1921,
- "length": 31,
- "value": "\"com.plaid.com.workflow-bridge\""
+ "offset": 3347,
+ "length": 33,
+ "value": "\"INSIGHTS_PREVIOUSLY_NOT_ENABLED\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Constants.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Constants.swift",
"kind": "StringLiteral",
"offset": 90,
"length": 11,
"value": "\"plaidlink\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Constants.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Constants.swift",
"kind": "StringLiteral",
"offset": 90,
"length": 11,
"value": "\"plaidlink\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1532,
+ "offset": 793,
"length": 20,
"value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1562,
+ "offset": 823,
"length": 9,
"value": "2"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1581,
+ "offset": 842,
"length": 18,
"value": "3"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1609,
+ "offset": 870,
"length": 24,
"value": "4"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1643,
+ "offset": 904,
"length": 23,
"value": "5"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1676,
+ "offset": 937,
"length": 12,
"value": "6"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1532,
+ "offset": 793,
"length": 20,
"value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1562,
+ "offset": 823,
"length": 9,
"value": "2"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "IntegerLiteral",
- "offset": 1581,
- "length": 18,
- "value": "3"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "IntegerLiteral",
+ "offset": 842,
+ "length": 18,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "IntegerLiteral",
+ "offset": 870,
+ "length": 24,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "IntegerLiteral",
+ "offset": 904,
+ "length": 23,
+ "value": "5"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "IntegerLiteral",
+ "offset": 937,
+ "length": 12,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 1547,
+ "length": 130,
+ "value": "\"Embedded search does not support public key configuration. Create your Handler using a link token.\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 1810,
+ "length": 9,
+ "value": "\"message\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 2156,
+ "length": 9,
+ "value": "\"message\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 2263,
+ "length": 14,
+ "value": "\"LinkKit.PLKHandlerShim\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 17143,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 17204,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "IntegerLiteral",
- "offset": 1609,
- "length": 24,
- "value": "4"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 17258,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
"kind": "IntegerLiteral",
- "offset": 1643,
- "length": 23,
- "value": "5"
+ "offset": 19460,
+ "length": 2,
+ "value": "-1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "IntegerLiteral",
- "offset": 1676,
- "length": 12,
- "value": "6"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 27512,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "Dictionary",
- "offset": 3736,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 30041,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "Dictionary",
- "offset": 3995,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 30081,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
- "kind": "Dictionary",
- "offset": 4208,
- "length": 3,
- "value": "[]"
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "kind": "StringLiteral",
+ "offset": 30144,
+ "length": 2,
+ "value": "\"\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 3002,
- "length": 14,
- "value": "\"LinkKit.PLKHandlerShim\""
+ "offset": 1312,
+ "length": 3,
+ "value": "\".\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "IntegerLiteral",
- "offset": 5932,
- "length": 15,
- "value": "1"
+ "offset": 1347,
+ "length": 1,
+ "value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ObjCBridge\/PlaidObjCBridge.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "IntegerLiteral",
- "offset": 5932,
- "length": 15,
+ "offset": 1383,
+ "length": 1,
"value": "1"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2642,
+ "offset": 2869,
"length": 9,
"value": "\"unknown\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2690,
+ "offset": 2917,
"length": 7,
"value": "\"other\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2737,
+ "offset": 2964,
"length": 8,
"value": "\"credit\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2783,
+ "offset": 3010,
"length": 6,
"value": "\"loan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2833,
+ "offset": 3060,
"length": 12,
"value": "\"depository\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2889,
+ "offset": 3116,
"length": 12,
"value": "\"investment\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 2938,
+ "offset": 3165,
"length": 5,
"value": "\"all\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 3542,
+ "offset": 3769,
"length": 7,
"value": "\"other\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 4269,
+ "offset": 4496,
"length": 13,
"value": "\"credit card\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 4322,
+ "offset": 4549,
"length": 8,
"value": "\"paypal\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 5975,
+ "offset": 6202,
"length": 6,
"value": "\"auto\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6023,
+ "offset": 6250,
"length": 10,
"value": "\"business\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6077,
+ "offset": 6304,
"length": 12,
"value": "\"commercial\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6135,
+ "offset": 6362,
"length": 14,
"value": "\"construction\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6191,
+ "offset": 6418,
"length": 10,
"value": "\"consumer\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6245,
+ "offset": 6472,
"length": 13,
"value": "\"home equity\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6304,
+ "offset": 6531,
"length": 16,
"value": "\"line of credit\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6358,
+ "offset": 6585,
"length": 6,
"value": "\"loan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6406,
+ "offset": 6633,
"length": 10,
"value": "\"mortgage\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6459,
+ "offset": 6686,
"length": 11,
"value": "\"overdraft\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 6511,
+ "offset": 6738,
"length": 9,
"value": "\"student\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 7917,
+ "offset": 8144,
"length": 17,
"value": "\"cash management\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 7970,
+ "offset": 8197,
"length": 4,
"value": "\"cd\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8016,
+ "offset": 8243,
"length": 10,
"value": "\"checking\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8063,
+ "offset": 8290,
"length": 5,
"value": "\"ebt\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8105,
+ "offset": 8332,
"length": 5,
"value": "\"hsa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8155,
+ "offset": 8382,
"length": 14,
"value": "\"money market\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8209,
+ "offset": 8436,
"length": 8,
"value": "\"paypal\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8258,
+ "offset": 8485,
"length": 9,
"value": "\"prepaid\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 8308,
+ "offset": 8535,
"length": 9,
"value": "\"savings\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13420,
+ "offset": 13647,
"length": 6,
"value": "\"401a\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13474,
+ "offset": 13701,
"length": 6,
"value": "\"401k\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13528,
+ "offset": 13755,
"length": 6,
"value": "\"403B\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13582,
+ "offset": 13809,
"length": 6,
"value": "\"457b\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13635,
+ "offset": 13862,
"length": 5,
"value": "\"529\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13683,
+ "offset": 13910,
"length": 11,
"value": "\"brokerage\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13735,
+ "offset": 13962,
"length": 10,
"value": "\"cash isa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13802,
+ "offset": 14029,
"length": 27,
"value": "\"education savings account\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13875,
+ "offset": 14102,
"length": 15,
"value": "\"fixed annuity\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13927,
+ "offset": 14154,
"length": 5,
"value": "\"gic\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 13996,
+ "offset": 14223,
"length": 34,
"value": "\"health reimbursement arrangement\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14067,
+ "offset": 14294,
"length": 5,
"value": "\"hsa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14109,
+ "offset": 14336,
"length": 5,
"value": "\"ira\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14151,
+ "offset": 14378,
"length": 5,
"value": "\"isa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14195,
+ "offset": 14422,
"length": 7,
"value": "\"keogh\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14239,
+ "offset": 14466,
"length": 5,
"value": "\"lif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14282,
+ "offset": 14509,
"length": 6,
"value": "\"lira\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14326,
+ "offset": 14553,
"length": 6,
"value": "\"lrif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14370,
+ "offset": 14597,
"length": 6,
"value": "\"lrsp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14420,
+ "offset": 14647,
"length": 13,
"value": "\"mutual fund\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14493,
+ "offset": 14720,
"length": 31,
"value": "\"non-taxable brokerage account\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14565,
+ "offset": 14792,
"length": 9,
"value": "\"pension\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14612,
+ "offset": 14839,
"length": 6,
"value": "\"plan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14656,
+ "offset": 14883,
"length": 6,
"value": "\"prif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14713,
+ "offset": 14940,
"length": 21,
"value": "\"profit sharing plan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14772,
+ "offset": 14999,
"length": 6,
"value": "\"rdsp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14816,
+ "offset": 15043,
"length": 6,
"value": "\"resp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14866,
+ "offset": 15093,
"length": 12,
"value": "\"retirement\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14916,
+ "offset": 15143,
"length": 6,
"value": "\"rlif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 14964,
+ "offset": 15191,
"length": 11,
"value": "\"roth 401k\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15013,
+ "offset": 15240,
"length": 6,
"value": "\"roth\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15057,
+ "offset": 15284,
"length": 6,
"value": "\"rrif\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15101,
+ "offset": 15328,
"length": 6,
"value": "\"rrsp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15147,
+ "offset": 15374,
"length": 8,
"value": "\"sarsep\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15195,
+ "offset": 15422,
"length": 9,
"value": "\"sep ira\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15247,
+ "offset": 15474,
"length": 12,
"value": "\"simple ira\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15297,
+ "offset": 15524,
"length": 6,
"value": "\"sipp\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15346,
+ "offset": 15573,
"length": 12,
"value": "\"stock plan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15396,
+ "offset": 15623,
"length": 6,
"value": "\"tfsa\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15453,
+ "offset": 15680,
"length": 21,
"value": "\"thrift savings plan\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15513,
+ "offset": 15740,
"length": 7,
"value": "\"trust\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15558,
+ "offset": 15785,
"length": 6,
"value": "\"ugma\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15602,
+ "offset": 15829,
"length": 6,
"value": "\"utma\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/AccountTypeSubtype.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/AccountTypeSubtype.swift",
"kind": "StringLiteral",
- "offset": 15657,
+ "offset": 15884,
"length": 18,
"value": "\"variable annuity\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Component.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
"kind": "IntegerLiteral",
"offset": 2448,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/Component.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
"kind": "IntegerLiteral",
"offset": 2461,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/ConsentPaneViewController.swift",
- "kind": "IntegerLiteral",
- "offset": 6999,
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2999,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "Array",
+ "offset": 3058,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 3510,
+ "length": 6,
+ "value": "\"fill\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 3718,
+ "length": 21,
+ "value": "\"exactWidth(\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 3738,
+ "length": 3,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 3872,
+ "length": 11,
+ "value": "\"centerX()\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 4209,
+ "length": 24,
+ "value": "\"exactHeight(\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 4231,
"length": 1,
- "value": "1"
+ "value": "\")\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/Panes\/ConsentPaneViewController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
"kind": "StringLiteral",
- "offset": 245,
- "length": 25,
- "value": "\"LinkKit.ConsentPaneViewController\""
+ "offset": 4366,
+ "length": 11,
+ "value": "\"centerY()\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 5653,
+ "length": 12,
+ "value": "\"stackFirst\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 6323,
+ "length": 12,
+ "value": "\"stackBelow\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 6798,
+ "length": 12,
+ "value": "\"stackPrior\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 7442,
+ "length": 10,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "StringLiteral",
+ "offset": 7451,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7510,
+ "length": 2,
+ "value": "20"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7543,
+ "length": 2,
+ "value": "10"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8060,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Component.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8091,
+ "length": 2,
+ "value": "10"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "StringLiteral",
"offset": 585,
"length": 12,
"value": "\"hw.machine\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "IntegerLiteral",
"offset": 617,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "IntegerLiteral",
"offset": 672,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "IntegerLiteral",
"offset": 716,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "IntegerLiteral",
"offset": 790,
"length": 1,
"value": "0"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/InfoProviding.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/InfoProviding.swift",
"kind": "StringLiteral",
"offset": 2568,
"length": 9,
"value": "\"LinkKit\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 669,
+ "length": 8,
+ "value": "\"ipwvfb\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1011,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 1337,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2309,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2336,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2362,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2594,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2746,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3084,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3208,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3320,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3451,
+ "length": 1,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 5880,
+ "length": 109,
+ "value": "\"Refusing to start webview fallback with webview having already loaded \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 5984,
+ "length": 3,
+ "value": "\"?\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 5988,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 6052,
+ "length": 54,
+ "value": "\"Starting webview fallback using URL \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 6105,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 6590,
+ "length": 37,
+ "value": "\"webview fallback URL change: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 6626,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6831,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7240,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9850,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 11809,
+ "length": 58,
+ "value": "\"Error on ASWebAuthenticationSession completion: \""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "StringLiteral",
+ "offset": 11866,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12970,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
"kind": "StringLiteral",
"offset": 404,
"length": 34,
"value": "\"LinkKit.InProcessWebviewFallbackController\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/FlutterLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/ViewControllers\/InProcessWebviewFallbackController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18756,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "StringLiteral",
+ "offset": 772,
+ "length": 39,
+ "value": "\"init(frame:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "StringLiteral",
+ "offset": 907,
+ "length": 39,
+ "value": "\"init(coder:) has not been implemented\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 2772,
+ "length": 3,
+ "value": "0.3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 2932,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 2977,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3043,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3149,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3329,
+ "length": 3,
+ "value": "0.3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3489,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3594,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3641,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 3707,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4319,
+ "length": 3,
+ "value": "0.3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4479,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4526,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4592,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4696,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 4970,
+ "length": 3,
+ "value": "0.3"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5141,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5196,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5243,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 5288,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5652,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5890,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6521,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6895,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7027,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7814,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8052,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8360,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8513,
+ "length": 2,
+ "value": "48"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8588,
+ "length": 2,
+ "value": "48"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 8873,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8904,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9011,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 9563,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9624,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "FloatLiteral",
+ "offset": 10033,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/EmbeddedSearch\/EmbeddedSearchView.swift",
+ "kind": "BooleanLiteral",
+ "offset": 10099,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/FlutterLinkKit.swift",
"kind": "StringLiteral",
"offset": 258,
"length": 20,
"value": "\"PlaidFlutterPlugin\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/FlutterLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/FlutterLinkKit.swift",
"kind": "StringLiteral",
"offset": 402,
"length": 54,
"value": "\"getLinkTokenConfigurationWithToken:onSuccessHandler:\""
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/FlutterLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/FlutterLinkKit.swift",
"kind": "BooleanLiteral",
"offset": 550,
"length": 4,
"value": "true"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/FlutterLinkKit.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/FlutterLinkKit.swift",
"kind": "BooleanLiteral",
"offset": 594,
"length": 5,
"value": "false"
},
{
- "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2891\/link\/apple\/Sources\/LinkUIController.swift",
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "Array",
+ "offset": 139,
+ "length": 27,
+ "value": "[3, 7, 1, 3, 7, 1, 3, 7, 1]"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "BooleanLiteral",
+ "offset": 397,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "IntegerLiteral",
+ "offset": 452,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "IntegerLiteral",
+ "offset": 611,
+ "length": 2,
+ "value": "10"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/RoutingNumberValidator.swift",
+ "kind": "IntegerLiteral",
+ "offset": 618,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3020,
+ "length": 18,
+ "value": "\"INVALID_API_KEYS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3095,
+ "length": 26,
+ "value": "\"UNAUTHORIZED_ENVIRONMENT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3173,
+ "length": 22,
+ "value": "\"INVALID_ACCESS_TOKEN\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3247,
+ "length": 22,
+ "value": "\"INVALID_PUBLIC_TOKEN\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3317,
+ "length": 17,
+ "value": "\"INVALID_PRODUCT\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3384,
+ "length": 20,
+ "value": "\"INVALID_ACCOUNT_ID\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3456,
+ "length": 21,
+ "value": "\"INVALID_INSTITUTION\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/Plaid\/InvalidInputErrorCode.swift",
+ "kind": "StringLiteral",
+ "offset": 3538,
+ "length": 32,
+ "value": "\"TOO_MANY_VERIFICATION_ATTEMPTS\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
"kind": "BooleanLiteral",
"offset": 920,
"length": 5,
"value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "StringLiteral",
+ "offset": 1184,
+ "length": 44,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "StringLiteral",
+ "offset": 1197,
+ "length": 6,
+ "value": "\" called outside of main thread\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1316,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1605,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "StringLiteral",
+ "offset": 1730,
+ "length": 44,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "StringLiteral",
+ "offset": 1743,
+ "length": 6,
+ "value": "\" called outside of main thread\""
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1812,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/tests\/~tests\/jenkins\/workspace\/~tests\/jenkins\/workspace\/workspace\/link-ios-pull-request_PR-2844\/link\/apple\/Sources\/LinkUIController.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2191,
+ "length": 4,
+ "value": "true"
}
]
}
\ No newline at end of file
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface
index 86169155..240547ba 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface
@@ -1,6 +1,6 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
-// swift-module-flags: -target x86_64-apple-ios14.2-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Osize -module-name LinkKit
+// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
+// swift-module-flags: -target x86_64-apple-ios14.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Osize -module-name LinkKit
// swift-module-flags-ignorable: -enable-bare-slash-regex
import AuthenticationServices
import Foundation
@@ -10,96 +10,121 @@ import Swift
import UIKit
import WebKit
import _Concurrency
+import _StringProcessing
+import _SwiftConcurrencyShims
import os
+public enum PresentationMethod {
+ case viewController(UIKit.UIViewController)
+ case custom(LinkKit.PresentationHandler, _: LinkKit.DismissalHandler = { $0.presentingViewController?.dismiss(animated: true, completion: nil) })
+}
+public struct ExitMetadata : Swift.Codable {
+ public var status: LinkKit.ExitStatus?
+ public var institution: LinkKit.Institution?
+ public var linkSessionID: Swift.String?
+ public var requestID: Swift.String?
+ public var metadataJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
+public enum ExitErrorCode : Swift.Codable {
+ case apiError(LinkKit.ApiErrorCode)
+ case authError(LinkKit.AuthErrorCode)
+ case assetReportError(LinkKit.AssetReportErrorCode)
+ case `internal`(Swift.String)
+ case institutionError(LinkKit.InstitutionErrorCode)
+ case itemError(LinkKit.ItemErrorCode)
+ case invalidInput(LinkKit.InvalidInputErrorCode)
+ case invalidRequest(LinkKit.InvalidRequestErrorCode)
+ case rateLimitExceeded(LinkKit.RateLimitErrorCode)
+ case unknown(type: Swift.String, code: Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
+}
extension Foundation.UUID {
public var linkuuidString: Swift.String {
get
}
}
-public struct Plaid {
- public enum CreateError : Swift.Error {
- case configurationError(LinkKit.ConfigurationError)
- }
- @available(*, deprecated, message: "This function will be removed in LinkKit V5.0.0. Use `create(_ linkTokenConfiguration: LinkTokenConfiguration)` instead.")
- public static func create(_ linkPublicKeyConfiguration: LinkKit.LinkPublicKeyConfiguration) -> Swift.Result
- public static func create(_ linkTokenConfiguration: LinkKit.LinkTokenConfiguration) -> Swift.Result
- public static let version: Swift.String
+public struct LinkSuccess : Swift.Codable {
+ public var publicToken: Swift.String
+ public var metadata: LinkKit.SuccessMetadata
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-@available(*, deprecated, message: "HandlerContinueError is deprecated, use Handler.continue(from:) instead of Handler.continueFrom(redirectUri:)")
-public enum HandlerContinueError : Swift.Error {
- case invalidRedirect(Swift.String)
- case `internal`
+public enum EventName : Swift.CustomStringConvertible, Swift.Codable {
+ case bankIncomeInsightsCompleted
+ case closeOAuth
+ case error
+ case exit
+ case failOAuth
+ case handoff
+ case identityVerificationStartStep
+ case identityVerificationPassStep
+ case identityVerificationFailStep
+ case identityVerificationPendingReviewStep
+ case identityVerificationCreateSession
+ case identityVerificationResumeSession
+ case identityVerificationPassSession
+ case identityVerificationFailSession
+ case identityVerificationPendingReviewSession
+ case identityVerificationOpenUI
+ case identityVerificationResumeUI
+ case identityVerificationCloseUI
+ case matchedSelectInstitution
+ case matchedSelectVerifyMethod
+ case open
+ case openMyPlaid
+ case openOAuth
+ case searchInstitution
+ case selectDegradedInstitution
+ case selectFilteredInstitution
+ case selectDownInstitution
+ case selectInstitution
+ case selectBrand
+ case selectAuthType
+ case submitAccountNumber
+ case submitDocuments
+ case submitDocumentsSuccess
+ case submitDocumentsError
+ case submitRoutingNumber
+ case submitCredentials
+ case submitMFA
+ case transitionView
+ case viewDataTypes
+ case submitPhone
+ case skipSubmitPhone
+ case verifyPhone
+ case connectNewInstitution
+ case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public protocol Handler {
- func open(presentUsing method: LinkKit.PresentationMethod)
- @available(*, deprecated, message: "open with options is deprecated")
- func open(presentUsing method: LinkKit.PresentationMethod, _ options: LinkKit.OpenOptions)
- func createEmbeddedView(presentUsing: LinkKit.PresentationMethod) -> Swift.Result
- @available(*, deprecated, message: "`continueFrom(redirectUri:) -> HandlerContinueError?` is deprecated. Use `continue(from:) -> Void`")
- func continueFrom(redirectUri: Foundation.URL) -> LinkKit.HandlerContinueError?
- @available(*, deprecated, message: "This function will be removed in LinkKit V5.0.0. This function should only be used if your app crashed or was killed during an out-of-process OAuth flow. Use `resumeAfterTermination(from redirectUri: URL)`")
- func `continue`(from redirectUri: Foundation.URL)
- func resumeAfterTermination(from redirectUri: Foundation.URL)
+public struct Institution : Swift.Codable {
+ public var id: LinkKit.InstitutionID
+ public var name: Swift.String
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public struct LinkTokenConfiguration {
- public let token: Swift.String
- public var onSuccess: LinkKit.OnSuccessHandler
- public var onExit: (LinkKit.LinkExit) -> Swift.Void
- public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
- public var noLoadingState: Swift.Bool
- public init(token: Swift.String, onSuccess: @escaping LinkKit.OnSuccessHandler)
+public enum ConfigurationError : Swift.Error {
+ case malformedClientID(message: Swift.String)
+ case missingAuthorization(message: Swift.String)
+ case noProduct(message: Swift.String)
+ case invalidOptionValue(message: Swift.String)
+ case invalidOptionCombination(message: Swift.String)
+ case invalidToken(message: Swift.String)
}
-public struct OAuthNonceConfiguration {
- public let nonce: LinkKit.OAuthNonce
- public let redirectUri: Foundation.URL
- public init(nonce: Swift.String, redirectUri: Foundation.URL)
-}
-public struct LinkPublicKeyConfiguration {
- public enum Token {
- @available(*, deprecated, message: "publicKey is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case payment(LinkKit.PaymentToken, LinkKit.PublicKey)
- @available(*, deprecated, message: "publicToken is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case depositSwitchToken(LinkKit.DepositSwitchToken, LinkKit.PublicKey)
- @available(*, deprecated, message: "publicKey is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case publicKey(LinkKit.PublicKey)
- @available(*, deprecated, message: "publicToken is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case publicToken(LinkKit.PublicToken, LinkKit.PublicKey)
- }
- public var clientName: Swift.String
- public var environment: LinkKit.Environment
- public var products: Swift.Set
- public var language: LinkKit.Language
- public var countryCodes: [LinkKit.CountryCode]
- public var token: LinkKit.LinkPublicKeyConfiguration.Token
- public var onSuccess: LinkKit.OnSuccessHandler
- public var onExit: (LinkKit.LinkExit) -> Swift.Void
- public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
- public var webhook: Foundation.URL?
- public var userLegalName: Swift.String?
- public var userEmailAddress: Swift.String?
- public var userPhoneNumber: Swift.String?
- public var linkCustomizationName: Swift.String?
- public var accountSubtypes: [LinkKit.AccountSubtype]
- public var oauthConfiguration: LinkKit.OAuthNonceConfiguration?
- public init(clientName: Swift.String, environment: LinkKit.Environment, products: Swift.Set, language: LinkKit.Language, token: LinkKit.LinkPublicKeyConfiguration.Token, countryCodes: [LinkKit.CountryCode], onSuccess: @escaping LinkKit.OnSuccessHandler)
+public struct LinkExit : Swift.Codable {
+ public var error: LinkKit.ExitError?
+ public var metadata: LinkKit.ExitMetadata
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public typealias PublicKey = Swift.String
-public typealias PublicToken = Swift.String
-public typealias PaymentToken = Swift.String
-public typealias DepositSwitchToken = Swift.String
-public typealias Language = Swift.String
-public typealias CountryCode = Swift.String
-public typealias OAuthNonce = Swift.String
-public typealias PresentationHandler = (UIKit.UIViewController) -> Swift.Void
-public typealias DismissalHandler = (UIKit.UIViewController) -> Swift.Void
-public typealias OnSuccessHandler = (LinkKit.LinkSuccess) -> Swift.Void
-public typealias OnExitHandler = (LinkKit.LinkExit) -> Swift.Void
-public typealias OnEventHandler = (LinkKit.LinkEvent) -> Swift.Void
-public typealias OpenOptions = [Swift.String : Swift.String]
-public typealias RawJSONMetadata = Swift.String
-public typealias InstitutionID = Swift.String
-public typealias AccountID = Swift.String
-public typealias AccountMask = Swift.String
public enum AccountSubtype : Swift.Codable {
case unknown(type: Swift.String, subtype: Swift.String)
case other(LinkKit.AccountSubtype.Other)
@@ -107,7 +132,7 @@ public enum AccountSubtype : Swift.Codable {
case all
case other
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case credit(LinkKit.AccountSubtype.Credit)
public enum Credit : Swift.Codable {
@@ -115,7 +140,7 @@ public enum AccountSubtype : Swift.Codable {
case creditCard
case paypal
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case loan(LinkKit.AccountSubtype.Loan)
public enum Loan : Swift.Codable {
@@ -132,7 +157,7 @@ public enum AccountSubtype : Swift.Codable {
case overdraft
case student
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case depository(LinkKit.AccountSubtype.Depository)
public enum Depository : Swift.Codable {
@@ -147,7 +172,7 @@ public enum AccountSubtype : Swift.Codable {
case prepaid
case savings
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case investment(LinkKit.AccountSubtype.Investment)
public enum Investment : Swift.Codable {
@@ -197,101 +222,40 @@ public enum AccountSubtype : Swift.Codable {
case unknown(Swift.String)
case utma
case variableAnnuity
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
- public init(from decoder: Swift.Decoder) throws
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct LinkSuccess : Swift.Codable {
- public var publicToken: Swift.String
- public var metadata: LinkKit.SuccessMetadata
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct LinkExit : Swift.Codable {
- public var error: LinkKit.ExitError?
- public var metadata: LinkKit.ExitMetadata
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct LinkEvent : Swift.Codable {
- public var eventName: LinkKit.EventName
- public var metadata: LinkKit.EventMetadata
- public init(from decoder: Swift.Decoder) throws
- public func encode(to encoder: Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public enum ConfigurationError : Swift.Error {
- case malformedClientID(message: Swift.String)
- case missingAuthorization(message: Swift.String)
- case noProduct(message: Swift.String)
- case invalidOptionValue(message: Swift.String)
- case invalidOptionCombination(message: Swift.String)
- case invalidToken(message: Swift.String)
-}
-public enum Environment : Swift.CustomStringConvertible {
- case production
- case development
- case sandbox
- public var description: Swift.String {
- get
- }
- public static func == (a: LinkKit.Environment, b: LinkKit.Environment) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
+public struct SuccessMetadata : Swift.Codable {
+ public var institution: LinkKit.Institution
+ public var accounts: [LinkKit.Account]
+ public var linkSessionID: Swift.String
+ public var metadataJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public enum Product : Swift.CustomStringConvertible, Swift.CaseIterable {
- case assets
- case auth
- case depositSwitch
- case identity
- case income
- case investments
- case liabilities
- case liabilitiesReport
- case paymentInitiation
- case transactions
+public enum RateLimitErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case accountsLimit
+ case additionLimit
+ case authLimit
+ case identityLimit
+ case incomeLimit
+ case itemGetLimit
+ case rateLimit
+ case transactionsLimit
+ case unknown(Swift.String)
public var description: Swift.String {
get
}
- public static func == (a: LinkKit.Product, b: LinkKit.Product) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public typealias AllCases = [LinkKit.Product]
- public static var allCases: [LinkKit.Product] {
- get
- }
- public var hashValue: Swift.Int {
- get
- }
}
-public enum VerificationStatus : Swift.CustomStringConvertible, Swift.Codable {
- case pendingAutomaticVerification
- case pendingManualVerification
- case manuallyVerified
+public enum ApiErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case internalServerError
+ case plannedMaintenance
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct Account : Swift.Codable {
- public let id: LinkKit.AccountID
- public let name: Swift.String
- public let mask: LinkKit.AccountMask?
- public let subtype: LinkKit.AccountSubtype
- public let verificationStatus: LinkKit.VerificationStatus?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct SuccessMetadata : Swift.Codable {
- public var institution: LinkKit.Institution
- public var accounts: [LinkKit.Account]
- public var linkSessionID: Swift.String
- public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
}
public enum ExitStatus : Swift.CustomStringConvertible, Swift.Codable {
case requiresQuestions
@@ -303,128 +267,11 @@ public enum ExitStatus : Swift.CustomStringConvertible, Swift.Codable {
case requiresAccountSelection
case continueToThirdParty
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
- public var description: Swift.String {
- get
- }
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct ExitError : Swift.Error, Swift.Codable {
- public var errorCode: LinkKit.ExitErrorCode
- public var errorMessage: Swift.String
- public var displayMessage: Swift.String?
- public var errorJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct Institution : Swift.Codable {
- public var id: LinkKit.InstitutionID
- public var name: Swift.String
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct ExitMetadata : Swift.Codable {
- public var status: LinkKit.ExitStatus?
- public var institution: LinkKit.Institution?
- public var linkSessionID: Swift.String?
- public var requestID: Swift.String?
- public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public enum EventName : Swift.CustomStringConvertible, Swift.Codable {
- case bankIncomeInsightsCompleted
- case closeOAuth
- case error
- case exit
- case failOAuth
- case handoff
- case identityVerificationStartStep
- case identityVerificationPassStep
- case identityVerificationFailStep
- case identityVerificationPendingReviewStep
- case identityVerificationCreateSession
- case identityVerificationResumeSession
- case identityVerificationPassSession
- case identityVerificationFailSession
- case identityVerificationPendingReviewSession
- case identityVerificationOpenUI
- case identityVerificationResumeUI
- case identityVerificationCloseUI
- case matchedSelectInstitution
- case matchedSelectVerifyMethod
- case open
- case openMyPlaid
- case openOAuth
- case searchInstitution
- case selectDegradedInstitution
- case selectFilteredInstitution
- case selectDownInstitution
- case selectInstitution
- case selectBrand
- case selectAuthType
- case submitAccountNumber
- case submitDocuments
- case submitDocumentsSuccess
- case submitDocumentsError
- case submitRoutingNumber
- case submitCredentials
- case submitMFA
- case transitionView
- case viewDataTypes
- case submitPhone
- case skipSubmitPhone
- case verifyPhone
- case connectNewInstitution
- case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
- public var description: Swift.String {
- get
- }
- public func encode(to encoder: Swift.Encoder) throws
-}
-public enum ViewName : Swift.CustomStringConvertible, Swift.Codable {
- case acceptTOS
- case connected
- case consent
- case credential
- case dataTransparency
- case dataTransparencyConsent
- case documentaryVerification
- case error
- case exit
- case kycCheck
- case loading
- case matchedConsent
- case matchedCredential
- case matchedMFA
- case mfa
- case numbers
- case numbersSelectInstitution
- case oauth
- case recaptcha
- case riskCheck
- case screening
- case selectAccount
- case selectAuthType
- case submitPhone
- case verifyPhone
- case selectSavedInstitution
- case selectSavedAccount
- case selectBrand
- case selectInstitution
- case selfieCheck
- case uploadDocuments
- case submitDocuments
- case submitDocumentsSuccess
- case submitDocumentsError
- case verifySMS
- case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
}
public struct EventMetadata : Swift.Codable {
public var accountNumberMask: Swift.String?
@@ -444,45 +291,87 @@ public struct EventMetadata : Swift.Codable {
public var timestamp: Foundation.Date
public var viewName: LinkKit.ViewName?
public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
+public struct Plaid {
+ public enum CreateError : Swift.Error {
+ case configurationError(LinkKit.ConfigurationError)
+ }
+ public static func create(_ linkTokenConfiguration: LinkKit.LinkTokenConfiguration) -> Swift.Result
+ public static let version: Swift.String
+}
+public enum AuthErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case productNotReady
+ case verificationExpired
+ case unknown(Swift.String)
+ public var description: Swift.String {
+ get
+ }
+}
+public enum Environment : Swift.CustomStringConvertible {
+ case production
+ case development
+ case sandbox
+ public var description: Swift.String {
+ get
+ }
+ public static func == (a: LinkKit.Environment, b: LinkKit.Environment) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public var hashValue: Swift.Int {
+ get
+ }
+}
+public struct ExitError : Swift.Error, Swift.Codable {
+ public var errorCode: LinkKit.ExitErrorCode
+ public var errorMessage: Swift.String
+ public var displayMessage: Swift.String?
+ public var errorJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
public enum MFAType : Swift.CustomStringConvertible, Swift.Codable {
case code
case device
case questions
case selections
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
public static func == (a: LinkKit.MFAType, b: LinkKit.MFAType) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
-public enum PresentationMethod {
- case viewController(UIKit.UIViewController)
- case custom(LinkKit.PresentationHandler, _: LinkKit.DismissalHandler = { $0.presentingViewController?.dismiss(animated: true, completion: nil) })
+@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class EmbeddedSearchAndSelectView : UIKit.UIView {
+ @available(*, unavailable)
+ @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect)
+ @objc deinit
}
-public enum ExitErrorCode : Swift.Codable {
- case apiError(LinkKit.ApiErrorCode)
- case authError(LinkKit.AuthErrorCode)
- case assetReportError(LinkKit.AssetReportErrorCode)
- case `internal`(Swift.String)
- case institutionError(LinkKit.InstitutionErrorCode)
- case itemError(LinkKit.ItemErrorCode)
- case invalidInput(LinkKit.InvalidInputErrorCode)
- case invalidRequest(LinkKit.InvalidRequestErrorCode)
- case rateLimitExceeded(LinkKit.RateLimitErrorCode)
- case unknown(type: Swift.String, code: Swift.String)
- public init(from decoder: Swift.Decoder) throws
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegate {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didUnhighlightItemAt indexPath: Foundation.IndexPath)
+}
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDataSource {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
+}
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegateFlowLayout {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, layout collectionViewLayout: UIKit.UICollectionViewLayout, sizeForItemAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGSize
+}
+public enum InstitutionErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case institutionDown
+ case institutionNotResponding
+ case institutionNotAvailable
+ case institutionNoLongerSupported
+ case unknown(Swift.String)
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
}
public enum InvalidRequestErrorCode : Swift.Error, Swift.CustomStringConvertible {
case missingFields
@@ -497,42 +386,6 @@ public enum InvalidRequestErrorCode : Swift.Error, Swift.CustomStringConvertible
get
}
}
-public enum InvalidInputErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case invalidApiKeys
- case unauthorizedEnvironment
- case invalidAccessToken
- case invalidPublicToken
- case invalidProduct
- case invalidAccountId
- case invalidInstitution
- case tooManyVerificationAttempts
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-public enum RateLimitErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case accountsLimit
- case additionLimit
- case authLimit
- case identityLimit
- case incomeLimit
- case itemGetLimit
- case rateLimit
- case transactionsLimit
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-public enum ApiErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case internalServerError
- case plannedMaintenance
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
public enum ItemErrorCode : Swift.Error, Swift.CustomStringConvertible {
case insufficientCredentials
case invalidCredentials
@@ -558,13 +411,112 @@ public enum ItemErrorCode : Swift.Error, Swift.CustomStringConvertible {
get
}
}
-public enum AuthErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case productNotReady
- case verificationExpired
+public struct LinkEvent : Swift.Codable {
+ public var eventName: LinkKit.EventName
+ public var metadata: LinkKit.EventMetadata
+ public init(from decoder: any Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
+}
+public enum Product : Swift.CustomStringConvertible, Swift.CaseIterable {
+ case assets
+ case auth
+ case depositSwitch
+ case identity
+ case income
+ case investments
+ case liabilities
+ case liabilitiesReport
+ case paymentInitiation
+ case transactions
+ public var description: Swift.String {
+ get
+ }
+ public static func == (a: LinkKit.Product, b: LinkKit.Product) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public typealias AllCases = [LinkKit.Product]
+ public static var allCases: [LinkKit.Product] {
+ get
+ }
+ public var hashValue: Swift.Int {
+ get
+ }
+}
+public typealias PublicKey = Swift.String
+public typealias PublicToken = Swift.String
+public typealias PaymentToken = Swift.String
+public typealias DepositSwitchToken = Swift.String
+public typealias Language = Swift.String
+public typealias CountryCode = Swift.String
+public typealias PresentationHandler = (UIKit.UIViewController) -> Swift.Void
+public typealias DismissalHandler = (UIKit.UIViewController) -> Swift.Void
+public typealias OnSuccessHandler = (LinkKit.LinkSuccess) -> Swift.Void
+public typealias OnExitHandler = (LinkKit.LinkExit) -> Swift.Void
+public typealias OnEventHandler = (LinkKit.LinkEvent) -> Swift.Void
+public typealias RawJSONMetadata = Swift.String
+public typealias InstitutionID = Swift.String
+public typealias AccountID = Swift.String
+public typealias AccountMask = Swift.String
+public struct LinkTokenConfiguration {
+ public let token: Swift.String
+ public var onSuccess: LinkKit.OnSuccessHandler
+ public var onExit: (LinkKit.LinkExit) -> Swift.Void
+ public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
+ public var noLoadingState: Swift.Bool
+ public init(token: Swift.String, onSuccess: @escaping LinkKit.OnSuccessHandler)
+}
+public enum ViewName : Swift.CustomStringConvertible, Swift.Codable {
+ case acceptTOS
+ case connected
+ case consent
+ case credential
+ case dataTransparency
+ case dataTransparencyConsent
+ case documentaryVerification
+ case error
+ case exit
+ case kycCheck
+ case loading
+ case matchedConsent
+ case matchedCredential
+ case matchedMFA
+ case mfa
+ case numbers
+ case numbersSelectInstitution
+ case oauth
+ case recaptcha
+ case riskCheck
+ case screening
+ case selectAccount
+ case selectAuthType
+ case submitPhone
+ case verifyPhone
+ case selectSavedInstitution
+ case selectSavedAccount
+ case selectBrand
+ case selectInstitution
+ case selfieCheck
+ case uploadDocuments
+ case submitDocuments
+ case submitDocumentsSuccess
+ case submitDocumentsError
+ case verifySMS
+ case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
+}
+public enum VerificationStatus : Swift.CustomStringConvertible, Swift.Codable {
+ case pendingAutomaticVerification
+ case pendingManualVerification
+ case manuallyVerified
case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
+ public func encode(to encoder: any Swift.Encoder) throws
}
public enum AssetReportErrorCode : Swift.Error, Swift.CustomStringConvertible {
case productNotEnabled
@@ -579,36 +531,8 @@ public enum AssetReportErrorCode : Swift.Error, Swift.CustomStringConvertible {
get
}
}
-public enum InstitutionErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case institutionDown
- case institutionNotResponding
- case institutionNotAvailable
- case institutionNoLongerSupported
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class EmbeddedSearchAndSelectView : UIKit.UIView {
- @available(*, unavailable)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegate {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didUnhighlightItemAt indexPath: Foundation.IndexPath)
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDataSource {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegateFlowLayout {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, layout collectionViewLayout: UIKit.UICollectionViewLayout, sizeForItemAt indexPath: Foundation.IndexPath) -> CoreGraphics.CGSize
-}
@_inheritsConvenienceInitializers @objc public class PLKPlaid : ObjectiveC.NSObject {
- @objc public static func createWithLinkTokenConfiguration(_ linkTokenConfiguration: LinkKit.PLKLinkTokenConfiguration, error: Foundation.NSErrorPointer) -> LinkKit.PLKHandler?
- @objc public static func createWithLinkPublicKeyConfiguration(_ linkPublicKeyConfiguration: LinkKit.PLKLinkPublicKeyConfiguration, error: Foundation.NSErrorPointer) -> LinkKit.PLKHandler?
+ @objc public static func createWithLinkTokenConfiguration(_ linkTokenConfiguration: LinkKit.PLKLinkTokenConfiguration, error: Foundation.NSErrorPointer) -> (any LinkKit.PLKHandler)?
@objc public static var sdkVersion: Swift.String {
@objc get
}
@@ -630,6 +554,15 @@ extension LinkKit.LinkEvent {
get
}
}
+public struct Account : Swift.Codable {
+ public let id: LinkKit.AccountID
+ public let name: Swift.String
+ public let mask: LinkKit.AccountMask?
+ public let subtype: LinkKit.AccountSubtype
+ public let verificationStatus: LinkKit.VerificationStatus?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
extension LinkKit.AccountSubtype {
public var description: Swift.String {
get
@@ -660,6 +593,25 @@ extension LinkKit.AccountSubtype.Investment {
get
}
}
+public protocol Handler {
+ func open(presentUsing method: LinkKit.PresentationMethod)
+ func createEmbeddedView(presentUsing: LinkKit.PresentationMethod) -> UIKit.UIView
+ func resumeAfterTermination(from redirectUri: Foundation.URL)
+}
+public enum InvalidInputErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case invalidApiKeys
+ case unauthorizedEnvironment
+ case invalidAccessToken
+ case invalidPublicToken
+ case invalidProduct
+ case invalidAccountId
+ case invalidInstitution
+ case tooManyVerificationAttempts
+ case unknown(Swift.String)
+ public var description: Swift.String {
+ get
+ }
+}
extension LinkKit.AccountSubtype : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Other : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Credit : Swift.CustomStringConvertible {}
@@ -668,7 +620,7 @@ extension LinkKit.AccountSubtype.Depository : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Investment : Swift.CustomStringConvertible {}
extension LinkKit.Environment : Swift.Equatable {}
extension LinkKit.Environment : Swift.Hashable {}
-extension LinkKit.Product : Swift.Equatable {}
-extension LinkKit.Product : Swift.Hashable {}
extension LinkKit.MFAType : Swift.Equatable {}
extension LinkKit.MFAType : Swift.Hashable {}
+extension LinkKit.Product : Swift.Equatable {}
+extension LinkKit.Product : Swift.Hashable {}
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc
index 9590936d..aabbd43a 100644
Binary files a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc and b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc differ
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface
index 86169155..240547ba 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface
@@ -1,6 +1,6 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
-// swift-module-flags: -target x86_64-apple-ios14.2-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Osize -module-name LinkKit
+// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
+// swift-module-flags: -target x86_64-apple-ios14.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Osize -module-name LinkKit
// swift-module-flags-ignorable: -enable-bare-slash-regex
import AuthenticationServices
import Foundation
@@ -10,96 +10,121 @@ import Swift
import UIKit
import WebKit
import _Concurrency
+import _StringProcessing
+import _SwiftConcurrencyShims
import os
+public enum PresentationMethod {
+ case viewController(UIKit.UIViewController)
+ case custom(LinkKit.PresentationHandler, _: LinkKit.DismissalHandler = { $0.presentingViewController?.dismiss(animated: true, completion: nil) })
+}
+public struct ExitMetadata : Swift.Codable {
+ public var status: LinkKit.ExitStatus?
+ public var institution: LinkKit.Institution?
+ public var linkSessionID: Swift.String?
+ public var requestID: Swift.String?
+ public var metadataJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
+public enum ExitErrorCode : Swift.Codable {
+ case apiError(LinkKit.ApiErrorCode)
+ case authError(LinkKit.AuthErrorCode)
+ case assetReportError(LinkKit.AssetReportErrorCode)
+ case `internal`(Swift.String)
+ case institutionError(LinkKit.InstitutionErrorCode)
+ case itemError(LinkKit.ItemErrorCode)
+ case invalidInput(LinkKit.InvalidInputErrorCode)
+ case invalidRequest(LinkKit.InvalidRequestErrorCode)
+ case rateLimitExceeded(LinkKit.RateLimitErrorCode)
+ case unknown(type: Swift.String, code: Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
+}
extension Foundation.UUID {
public var linkuuidString: Swift.String {
get
}
}
-public struct Plaid {
- public enum CreateError : Swift.Error {
- case configurationError(LinkKit.ConfigurationError)
- }
- @available(*, deprecated, message: "This function will be removed in LinkKit V5.0.0. Use `create(_ linkTokenConfiguration: LinkTokenConfiguration)` instead.")
- public static func create(_ linkPublicKeyConfiguration: LinkKit.LinkPublicKeyConfiguration) -> Swift.Result
- public static func create(_ linkTokenConfiguration: LinkKit.LinkTokenConfiguration) -> Swift.Result
- public static let version: Swift.String
+public struct LinkSuccess : Swift.Codable {
+ public var publicToken: Swift.String
+ public var metadata: LinkKit.SuccessMetadata
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-@available(*, deprecated, message: "HandlerContinueError is deprecated, use Handler.continue(from:) instead of Handler.continueFrom(redirectUri:)")
-public enum HandlerContinueError : Swift.Error {
- case invalidRedirect(Swift.String)
- case `internal`
+public enum EventName : Swift.CustomStringConvertible, Swift.Codable {
+ case bankIncomeInsightsCompleted
+ case closeOAuth
+ case error
+ case exit
+ case failOAuth
+ case handoff
+ case identityVerificationStartStep
+ case identityVerificationPassStep
+ case identityVerificationFailStep
+ case identityVerificationPendingReviewStep
+ case identityVerificationCreateSession
+ case identityVerificationResumeSession
+ case identityVerificationPassSession
+ case identityVerificationFailSession
+ case identityVerificationPendingReviewSession
+ case identityVerificationOpenUI
+ case identityVerificationResumeUI
+ case identityVerificationCloseUI
+ case matchedSelectInstitution
+ case matchedSelectVerifyMethod
+ case open
+ case openMyPlaid
+ case openOAuth
+ case searchInstitution
+ case selectDegradedInstitution
+ case selectFilteredInstitution
+ case selectDownInstitution
+ case selectInstitution
+ case selectBrand
+ case selectAuthType
+ case submitAccountNumber
+ case submitDocuments
+ case submitDocumentsSuccess
+ case submitDocumentsError
+ case submitRoutingNumber
+ case submitCredentials
+ case submitMFA
+ case transitionView
+ case viewDataTypes
+ case submitPhone
+ case skipSubmitPhone
+ case verifyPhone
+ case connectNewInstitution
+ case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public protocol Handler {
- func open(presentUsing method: LinkKit.PresentationMethod)
- @available(*, deprecated, message: "open with options is deprecated")
- func open(presentUsing method: LinkKit.PresentationMethod, _ options: LinkKit.OpenOptions)
- func createEmbeddedView(presentUsing: LinkKit.PresentationMethod) -> Swift.Result
- @available(*, deprecated, message: "`continueFrom(redirectUri:) -> HandlerContinueError?` is deprecated. Use `continue(from:) -> Void`")
- func continueFrom(redirectUri: Foundation.URL) -> LinkKit.HandlerContinueError?
- @available(*, deprecated, message: "This function will be removed in LinkKit V5.0.0. This function should only be used if your app crashed or was killed during an out-of-process OAuth flow. Use `resumeAfterTermination(from redirectUri: URL)`")
- func `continue`(from redirectUri: Foundation.URL)
- func resumeAfterTermination(from redirectUri: Foundation.URL)
+public struct Institution : Swift.Codable {
+ public var id: LinkKit.InstitutionID
+ public var name: Swift.String
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public struct LinkTokenConfiguration {
- public let token: Swift.String
- public var onSuccess: LinkKit.OnSuccessHandler
- public var onExit: (LinkKit.LinkExit) -> Swift.Void
- public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
- public var noLoadingState: Swift.Bool
- public init(token: Swift.String, onSuccess: @escaping LinkKit.OnSuccessHandler)
+public enum ConfigurationError : Swift.Error {
+ case malformedClientID(message: Swift.String)
+ case missingAuthorization(message: Swift.String)
+ case noProduct(message: Swift.String)
+ case invalidOptionValue(message: Swift.String)
+ case invalidOptionCombination(message: Swift.String)
+ case invalidToken(message: Swift.String)
}
-public struct OAuthNonceConfiguration {
- public let nonce: LinkKit.OAuthNonce
- public let redirectUri: Foundation.URL
- public init(nonce: Swift.String, redirectUri: Foundation.URL)
-}
-public struct LinkPublicKeyConfiguration {
- public enum Token {
- @available(*, deprecated, message: "publicKey is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case payment(LinkKit.PaymentToken, LinkKit.PublicKey)
- @available(*, deprecated, message: "publicToken is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case depositSwitchToken(LinkKit.DepositSwitchToken, LinkKit.PublicKey)
- @available(*, deprecated, message: "publicKey is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case publicKey(LinkKit.PublicKey)
- @available(*, deprecated, message: "publicToken is deprecated in favor of link-token, for details see https://plaid.com/docs/link-token-migration-guide/")
- case publicToken(LinkKit.PublicToken, LinkKit.PublicKey)
- }
- public var clientName: Swift.String
- public var environment: LinkKit.Environment
- public var products: Swift.Set
- public var language: LinkKit.Language
- public var countryCodes: [LinkKit.CountryCode]
- public var token: LinkKit.LinkPublicKeyConfiguration.Token
- public var onSuccess: LinkKit.OnSuccessHandler
- public var onExit: (LinkKit.LinkExit) -> Swift.Void
- public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
- public var webhook: Foundation.URL?
- public var userLegalName: Swift.String?
- public var userEmailAddress: Swift.String?
- public var userPhoneNumber: Swift.String?
- public var linkCustomizationName: Swift.String?
- public var accountSubtypes: [LinkKit.AccountSubtype]
- public var oauthConfiguration: LinkKit.OAuthNonceConfiguration?
- public init(clientName: Swift.String, environment: LinkKit.Environment, products: Swift.Set, language: LinkKit.Language, token: LinkKit.LinkPublicKeyConfiguration.Token, countryCodes: [LinkKit.CountryCode], onSuccess: @escaping LinkKit.OnSuccessHandler)
+public struct LinkExit : Swift.Codable {
+ public var error: LinkKit.ExitError?
+ public var metadata: LinkKit.ExitMetadata
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public typealias PublicKey = Swift.String
-public typealias PublicToken = Swift.String
-public typealias PaymentToken = Swift.String
-public typealias DepositSwitchToken = Swift.String
-public typealias Language = Swift.String
-public typealias CountryCode = Swift.String
-public typealias OAuthNonce = Swift.String
-public typealias PresentationHandler = (UIKit.UIViewController) -> Swift.Void
-public typealias DismissalHandler = (UIKit.UIViewController) -> Swift.Void
-public typealias OnSuccessHandler = (LinkKit.LinkSuccess) -> Swift.Void
-public typealias OnExitHandler = (LinkKit.LinkExit) -> Swift.Void
-public typealias OnEventHandler = (LinkKit.LinkEvent) -> Swift.Void
-public typealias OpenOptions = [Swift.String : Swift.String]
-public typealias RawJSONMetadata = Swift.String
-public typealias InstitutionID = Swift.String
-public typealias AccountID = Swift.String
-public typealias AccountMask = Swift.String
public enum AccountSubtype : Swift.Codable {
case unknown(type: Swift.String, subtype: Swift.String)
case other(LinkKit.AccountSubtype.Other)
@@ -107,7 +132,7 @@ public enum AccountSubtype : Swift.Codable {
case all
case other
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case credit(LinkKit.AccountSubtype.Credit)
public enum Credit : Swift.Codable {
@@ -115,7 +140,7 @@ public enum AccountSubtype : Swift.Codable {
case creditCard
case paypal
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case loan(LinkKit.AccountSubtype.Loan)
public enum Loan : Swift.Codable {
@@ -132,7 +157,7 @@ public enum AccountSubtype : Swift.Codable {
case overdraft
case student
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case depository(LinkKit.AccountSubtype.Depository)
public enum Depository : Swift.Codable {
@@ -147,7 +172,7 @@ public enum AccountSubtype : Swift.Codable {
case prepaid
case savings
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
case investment(LinkKit.AccountSubtype.Investment)
public enum Investment : Swift.Codable {
@@ -197,101 +222,40 @@ public enum AccountSubtype : Swift.Codable {
case unknown(Swift.String)
case utma
case variableAnnuity
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
- public init(from decoder: Swift.Decoder) throws
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct LinkSuccess : Swift.Codable {
- public var publicToken: Swift.String
- public var metadata: LinkKit.SuccessMetadata
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct LinkExit : Swift.Codable {
- public var error: LinkKit.ExitError?
- public var metadata: LinkKit.ExitMetadata
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct LinkEvent : Swift.Codable {
- public var eventName: LinkKit.EventName
- public var metadata: LinkKit.EventMetadata
- public init(from decoder: Swift.Decoder) throws
- public func encode(to encoder: Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
}
-public enum ConfigurationError : Swift.Error {
- case malformedClientID(message: Swift.String)
- case missingAuthorization(message: Swift.String)
- case noProduct(message: Swift.String)
- case invalidOptionValue(message: Swift.String)
- case invalidOptionCombination(message: Swift.String)
- case invalidToken(message: Swift.String)
-}
-public enum Environment : Swift.CustomStringConvertible {
- case production
- case development
- case sandbox
- public var description: Swift.String {
- get
- }
- public static func == (a: LinkKit.Environment, b: LinkKit.Environment) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
+public struct SuccessMetadata : Swift.Codable {
+ public var institution: LinkKit.Institution
+ public var accounts: [LinkKit.Account]
+ public var linkSessionID: Swift.String
+ public var metadataJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
-public enum Product : Swift.CustomStringConvertible, Swift.CaseIterable {
- case assets
- case auth
- case depositSwitch
- case identity
- case income
- case investments
- case liabilities
- case liabilitiesReport
- case paymentInitiation
- case transactions
+public enum RateLimitErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case accountsLimit
+ case additionLimit
+ case authLimit
+ case identityLimit
+ case incomeLimit
+ case itemGetLimit
+ case rateLimit
+ case transactionsLimit
+ case unknown(Swift.String)
public var description: Swift.String {
get
}
- public static func == (a: LinkKit.Product, b: LinkKit.Product) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public typealias AllCases = [LinkKit.Product]
- public static var allCases: [LinkKit.Product] {
- get
- }
- public var hashValue: Swift.Int {
- get
- }
}
-public enum VerificationStatus : Swift.CustomStringConvertible, Swift.Codable {
- case pendingAutomaticVerification
- case pendingManualVerification
- case manuallyVerified
+public enum ApiErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case internalServerError
+ case plannedMaintenance
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct Account : Swift.Codable {
- public let id: LinkKit.AccountID
- public let name: Swift.String
- public let mask: LinkKit.AccountMask?
- public let subtype: LinkKit.AccountSubtype
- public let verificationStatus: LinkKit.VerificationStatus?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct SuccessMetadata : Swift.Codable {
- public var institution: LinkKit.Institution
- public var accounts: [LinkKit.Account]
- public var linkSessionID: Swift.String
- public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
}
public enum ExitStatus : Swift.CustomStringConvertible, Swift.Codable {
case requiresQuestions
@@ -303,128 +267,11 @@ public enum ExitStatus : Swift.CustomStringConvertible, Swift.Codable {
case requiresAccountSelection
case continueToThirdParty
case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
- public var description: Swift.String {
- get
- }
- public func encode(to encoder: Swift.Encoder) throws
-}
-public struct ExitError : Swift.Error, Swift.Codable {
- public var errorCode: LinkKit.ExitErrorCode
- public var errorMessage: Swift.String
- public var displayMessage: Swift.String?
- public var errorJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct Institution : Swift.Codable {
- public var id: LinkKit.InstitutionID
- public var name: Swift.String
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public struct ExitMetadata : Swift.Codable {
- public var status: LinkKit.ExitStatus?
- public var institution: LinkKit.Institution?
- public var linkSessionID: Swift.String?
- public var requestID: Swift.String?
- public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
-}
-public enum EventName : Swift.CustomStringConvertible, Swift.Codable {
- case bankIncomeInsightsCompleted
- case closeOAuth
- case error
- case exit
- case failOAuth
- case handoff
- case identityVerificationStartStep
- case identityVerificationPassStep
- case identityVerificationFailStep
- case identityVerificationPendingReviewStep
- case identityVerificationCreateSession
- case identityVerificationResumeSession
- case identityVerificationPassSession
- case identityVerificationFailSession
- case identityVerificationPendingReviewSession
- case identityVerificationOpenUI
- case identityVerificationResumeUI
- case identityVerificationCloseUI
- case matchedSelectInstitution
- case matchedSelectVerifyMethod
- case open
- case openMyPlaid
- case openOAuth
- case searchInstitution
- case selectDegradedInstitution
- case selectFilteredInstitution
- case selectDownInstitution
- case selectInstitution
- case selectBrand
- case selectAuthType
- case submitAccountNumber
- case submitDocuments
- case submitDocumentsSuccess
- case submitDocumentsError
- case submitRoutingNumber
- case submitCredentials
- case submitMFA
- case transitionView
- case viewDataTypes
- case submitPhone
- case skipSubmitPhone
- case verifyPhone
- case connectNewInstitution
- case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
- public var description: Swift.String {
- get
- }
- public func encode(to encoder: Swift.Encoder) throws
-}
-public enum ViewName : Swift.CustomStringConvertible, Swift.Codable {
- case acceptTOS
- case connected
- case consent
- case credential
- case dataTransparency
- case dataTransparencyConsent
- case documentaryVerification
- case error
- case exit
- case kycCheck
- case loading
- case matchedConsent
- case matchedCredential
- case matchedMFA
- case mfa
- case numbers
- case numbersSelectInstitution
- case oauth
- case recaptcha
- case riskCheck
- case screening
- case selectAccount
- case selectAuthType
- case submitPhone
- case verifyPhone
- case selectSavedInstitution
- case selectSavedAccount
- case selectBrand
- case selectInstitution
- case selfieCheck
- case uploadDocuments
- case submitDocuments
- case submitDocumentsSuccess
- case submitDocumentsError
- case verifySMS
- case unknown(Swift.String)
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
}
public struct EventMetadata : Swift.Codable {
public var accountNumberMask: Swift.String?
@@ -444,45 +291,87 @@ public struct EventMetadata : Swift.Codable {
public var timestamp: Foundation.Date
public var viewName: LinkKit.ViewName?
public var metadataJSON: LinkKit.RawJSONMetadata?
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
+public struct Plaid {
+ public enum CreateError : Swift.Error {
+ case configurationError(LinkKit.ConfigurationError)
+ }
+ public static func create(_ linkTokenConfiguration: LinkKit.LinkTokenConfiguration) -> Swift.Result
+ public static let version: Swift.String
+}
+public enum AuthErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case productNotReady
+ case verificationExpired
+ case unknown(Swift.String)
+ public var description: Swift.String {
+ get
+ }
+}
+public enum Environment : Swift.CustomStringConvertible {
+ case production
+ case development
+ case sandbox
+ public var description: Swift.String {
+ get
+ }
+ public static func == (a: LinkKit.Environment, b: LinkKit.Environment) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public var hashValue: Swift.Int {
+ get
+ }
+}
+public struct ExitError : Swift.Error, Swift.Codable {
+ public var errorCode: LinkKit.ExitErrorCode
+ public var errorMessage: Swift.String
+ public var displayMessage: Swift.String?
+ public var errorJSON: LinkKit.RawJSONMetadata?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
}
public enum MFAType : Swift.CustomStringConvertible, Swift.Codable {
case code
case device
case questions
case selections
- public init(from decoder: Swift.Decoder) throws
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
public static func == (a: LinkKit.MFAType, b: LinkKit.MFAType) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
-public enum PresentationMethod {
- case viewController(UIKit.UIViewController)
- case custom(LinkKit.PresentationHandler, _: LinkKit.DismissalHandler = { $0.presentingViewController?.dismiss(animated: true, completion: nil) })
+@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class EmbeddedSearchAndSelectView : UIKit.UIView {
+ @available(*, unavailable)
+ @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect)
+ @objc deinit
}
-public enum ExitErrorCode : Swift.Codable {
- case apiError(LinkKit.ApiErrorCode)
- case authError(LinkKit.AuthErrorCode)
- case assetReportError(LinkKit.AssetReportErrorCode)
- case `internal`(Swift.String)
- case institutionError(LinkKit.InstitutionErrorCode)
- case itemError(LinkKit.ItemErrorCode)
- case invalidInput(LinkKit.InvalidInputErrorCode)
- case invalidRequest(LinkKit.InvalidRequestErrorCode)
- case rateLimitExceeded(LinkKit.RateLimitErrorCode)
- case unknown(type: Swift.String, code: Swift.String)
- public init(from decoder: Swift.Decoder) throws
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegate {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didUnhighlightItemAt indexPath: Foundation.IndexPath)
+}
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDataSource {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
+}
+extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegateFlowLayout {
+ @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, layout collectionViewLayout: UIKit.UICollectionViewLayout, sizeForItemAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGSize
+}
+public enum InstitutionErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case institutionDown
+ case institutionNotResponding
+ case institutionNotAvailable
+ case institutionNoLongerSupported
+ case unknown(Swift.String)
public var description: Swift.String {
get
}
- public func encode(to encoder: Swift.Encoder) throws
}
public enum InvalidRequestErrorCode : Swift.Error, Swift.CustomStringConvertible {
case missingFields
@@ -497,42 +386,6 @@ public enum InvalidRequestErrorCode : Swift.Error, Swift.CustomStringConvertible
get
}
}
-public enum InvalidInputErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case invalidApiKeys
- case unauthorizedEnvironment
- case invalidAccessToken
- case invalidPublicToken
- case invalidProduct
- case invalidAccountId
- case invalidInstitution
- case tooManyVerificationAttempts
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-public enum RateLimitErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case accountsLimit
- case additionLimit
- case authLimit
- case identityLimit
- case incomeLimit
- case itemGetLimit
- case rateLimit
- case transactionsLimit
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-public enum ApiErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case internalServerError
- case plannedMaintenance
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
public enum ItemErrorCode : Swift.Error, Swift.CustomStringConvertible {
case insufficientCredentials
case invalidCredentials
@@ -558,13 +411,112 @@ public enum ItemErrorCode : Swift.Error, Swift.CustomStringConvertible {
get
}
}
-public enum AuthErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case productNotReady
- case verificationExpired
+public struct LinkEvent : Swift.Codable {
+ public var eventName: LinkKit.EventName
+ public var metadata: LinkKit.EventMetadata
+ public init(from decoder: any Swift.Decoder) throws
+ public func encode(to encoder: any Swift.Encoder) throws
+}
+public enum Product : Swift.CustomStringConvertible, Swift.CaseIterable {
+ case assets
+ case auth
+ case depositSwitch
+ case identity
+ case income
+ case investments
+ case liabilities
+ case liabilitiesReport
+ case paymentInitiation
+ case transactions
+ public var description: Swift.String {
+ get
+ }
+ public static func == (a: LinkKit.Product, b: LinkKit.Product) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public typealias AllCases = [LinkKit.Product]
+ public static var allCases: [LinkKit.Product] {
+ get
+ }
+ public var hashValue: Swift.Int {
+ get
+ }
+}
+public typealias PublicKey = Swift.String
+public typealias PublicToken = Swift.String
+public typealias PaymentToken = Swift.String
+public typealias DepositSwitchToken = Swift.String
+public typealias Language = Swift.String
+public typealias CountryCode = Swift.String
+public typealias PresentationHandler = (UIKit.UIViewController) -> Swift.Void
+public typealias DismissalHandler = (UIKit.UIViewController) -> Swift.Void
+public typealias OnSuccessHandler = (LinkKit.LinkSuccess) -> Swift.Void
+public typealias OnExitHandler = (LinkKit.LinkExit) -> Swift.Void
+public typealias OnEventHandler = (LinkKit.LinkEvent) -> Swift.Void
+public typealias RawJSONMetadata = Swift.String
+public typealias InstitutionID = Swift.String
+public typealias AccountID = Swift.String
+public typealias AccountMask = Swift.String
+public struct LinkTokenConfiguration {
+ public let token: Swift.String
+ public var onSuccess: LinkKit.OnSuccessHandler
+ public var onExit: (LinkKit.LinkExit) -> Swift.Void
+ public var onEvent: (LinkKit.LinkEvent) -> Swift.Void
+ public var noLoadingState: Swift.Bool
+ public init(token: Swift.String, onSuccess: @escaping LinkKit.OnSuccessHandler)
+}
+public enum ViewName : Swift.CustomStringConvertible, Swift.Codable {
+ case acceptTOS
+ case connected
+ case consent
+ case credential
+ case dataTransparency
+ case dataTransparencyConsent
+ case documentaryVerification
+ case error
+ case exit
+ case kycCheck
+ case loading
+ case matchedConsent
+ case matchedCredential
+ case matchedMFA
+ case mfa
+ case numbers
+ case numbersSelectInstitution
+ case oauth
+ case recaptcha
+ case riskCheck
+ case screening
+ case selectAccount
+ case selectAuthType
+ case submitPhone
+ case verifyPhone
+ case selectSavedInstitution
+ case selectSavedAccount
+ case selectBrand
+ case selectInstitution
+ case selfieCheck
+ case uploadDocuments
+ case submitDocuments
+ case submitDocumentsSuccess
+ case submitDocumentsError
+ case verifySMS
+ case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
+ public var description: Swift.String {
+ get
+ }
+ public func encode(to encoder: any Swift.Encoder) throws
+}
+public enum VerificationStatus : Swift.CustomStringConvertible, Swift.Codable {
+ case pendingAutomaticVerification
+ case pendingManualVerification
+ case manuallyVerified
case unknown(Swift.String)
+ public init(from decoder: any Swift.Decoder) throws
public var description: Swift.String {
get
}
+ public func encode(to encoder: any Swift.Encoder) throws
}
public enum AssetReportErrorCode : Swift.Error, Swift.CustomStringConvertible {
case productNotEnabled
@@ -579,36 +531,8 @@ public enum AssetReportErrorCode : Swift.Error, Swift.CustomStringConvertible {
get
}
}
-public enum InstitutionErrorCode : Swift.Error, Swift.CustomStringConvertible {
- case institutionDown
- case institutionNotResponding
- case institutionNotAvailable
- case institutionNoLongerSupported
- case unknown(Swift.String)
- public var description: Swift.String {
- get
- }
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class EmbeddedSearchAndSelectView : UIKit.UIView {
- @available(*, unavailable)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegate {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, didUnhighlightItemAt indexPath: Foundation.IndexPath)
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDataSource {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
-}
-extension LinkKit.EmbeddedSearchAndSelectView : UIKit.UICollectionViewDelegateFlowLayout {
- @_Concurrency.MainActor(unsafe) @objc final public func collectionView(_ collectionView: UIKit.UICollectionView, layout collectionViewLayout: UIKit.UICollectionViewLayout, sizeForItemAt indexPath: Foundation.IndexPath) -> CoreGraphics.CGSize
-}
@_inheritsConvenienceInitializers @objc public class PLKPlaid : ObjectiveC.NSObject {
- @objc public static func createWithLinkTokenConfiguration(_ linkTokenConfiguration: LinkKit.PLKLinkTokenConfiguration, error: Foundation.NSErrorPointer) -> LinkKit.PLKHandler?
- @objc public static func createWithLinkPublicKeyConfiguration(_ linkPublicKeyConfiguration: LinkKit.PLKLinkPublicKeyConfiguration, error: Foundation.NSErrorPointer) -> LinkKit.PLKHandler?
+ @objc public static func createWithLinkTokenConfiguration(_ linkTokenConfiguration: LinkKit.PLKLinkTokenConfiguration, error: Foundation.NSErrorPointer) -> (any LinkKit.PLKHandler)?
@objc public static var sdkVersion: Swift.String {
@objc get
}
@@ -630,6 +554,15 @@ extension LinkKit.LinkEvent {
get
}
}
+public struct Account : Swift.Codable {
+ public let id: LinkKit.AccountID
+ public let name: Swift.String
+ public let mask: LinkKit.AccountMask?
+ public let subtype: LinkKit.AccountSubtype
+ public let verificationStatus: LinkKit.VerificationStatus?
+ public func encode(to encoder: any Swift.Encoder) throws
+ public init(from decoder: any Swift.Decoder) throws
+}
extension LinkKit.AccountSubtype {
public var description: Swift.String {
get
@@ -660,6 +593,25 @@ extension LinkKit.AccountSubtype.Investment {
get
}
}
+public protocol Handler {
+ func open(presentUsing method: LinkKit.PresentationMethod)
+ func createEmbeddedView(presentUsing: LinkKit.PresentationMethod) -> UIKit.UIView
+ func resumeAfterTermination(from redirectUri: Foundation.URL)
+}
+public enum InvalidInputErrorCode : Swift.Error, Swift.CustomStringConvertible {
+ case invalidApiKeys
+ case unauthorizedEnvironment
+ case invalidAccessToken
+ case invalidPublicToken
+ case invalidProduct
+ case invalidAccountId
+ case invalidInstitution
+ case tooManyVerificationAttempts
+ case unknown(Swift.String)
+ public var description: Swift.String {
+ get
+ }
+}
extension LinkKit.AccountSubtype : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Other : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Credit : Swift.CustomStringConvertible {}
@@ -668,7 +620,7 @@ extension LinkKit.AccountSubtype.Depository : Swift.CustomStringConvertible {}
extension LinkKit.AccountSubtype.Investment : Swift.CustomStringConvertible {}
extension LinkKit.Environment : Swift.Equatable {}
extension LinkKit.Environment : Swift.Hashable {}
-extension LinkKit.Product : Swift.Equatable {}
-extension LinkKit.Product : Swift.Hashable {}
extension LinkKit.MFAType : Swift.Equatable {}
extension LinkKit.MFAType : Swift.Hashable {}
+extension LinkKit.Product : Swift.Equatable {}
+extension LinkKit.Product : Swift.Hashable {}
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftmodule b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftmodule
index f6080a51..e5090e86 100644
Binary files a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftmodule and b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftmodule differ
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/module.modulemap b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/module.modulemap
index c64c56a7..3dcb1abf 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/module.modulemap
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Modules/module.modulemap
@@ -1,7 +1,7 @@
framework module LinkKit {
umbrella header "LinkKit.h"
-
export *
+
module * { export * }
}
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/Info.plist b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/Info.plist
index bfc44633..de1a1ab7 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/Info.plist
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/Info.plist
@@ -17,39 +17,39 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 4.7.0
+ 5.0.0
CFBundleSupportedPlatforms
MacOSX
CFBundleVersion
- 2891.11
+ 2844.34
DTCompiler
com.apple.compilers.llvm.clang.1_0
DTPlatformBuild
- 14A400
+
DTPlatformName
macosx
DTPlatformVersion
- 12.3
+ 14.0
DTSDKBuild
- 21E226
+ 23A334
DTSDKName
- macosx12.3
+ macosx14.0
DTXcode
- 1401
+ 1501
DTXcodeBuild
- 14A400
+ 15A507
LSMinimumSystemVersion
11.0
NSHumanReadableCopyright
Copyright © 2016–2021 Plaid Inc. All rights reserved.
SCMBuildBranch
- PR-2891
+ PR-2844
SCMBuildNumber
- 11
+ 34
SCMBuildRevision
- 4082b45610cbd49b70bfdfd63a2a8e6b81572fd5
+ c8b9726141687a2ae4cc6fd6d6e767893caa686b
UIDeviceFamily
2
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/PrivacyInfo.xcprivacy b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/PrivacyInfo.xcprivacy
new file mode 100644
index 00000000..79bc9e28
--- /dev/null
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/PrivacyInfo.xcprivacy
@@ -0,0 +1,17 @@
+
+
+
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryUserDefaults
+ NSPrivacyAccessedAPITypeReasons
+
+ CA92.1
+
+
+
+
+
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/Threads_Threads.bundle/Contents/Info.plist b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/Threads_Threads.bundle/Contents/Info.plist
index 7cff4d85..c7777c4a 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/Threads_Threads.bundle/Contents/Info.plist
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/Threads_Threads.bundle/Contents/Info.plist
@@ -19,25 +19,25 @@
MacOSX
CFBundleVersion
- 2891.11
+ 2844.34
DTCompiler
com.apple.compilers.llvm.clang.1_0
DTPlatformBuild
- 14A400
+
DTPlatformName
macosx
DTPlatformVersion
- 12.3
+ 14.0
DTSDKBuild
- 21E226
+ 23A334
DTSDKName
- macosx12.3
+ macosx14.0
DTXcode
- 1401
+ 1501
DTXcodeBuild
- 14A400
+ 15A507
LSMinimumSystemVersion
- 10.15
+ 11.0
UIDeviceFamily
2
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/Threads_Threads.bundle/Contents/Resources/Assets.car b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/Threads_Threads.bundle/Contents/Resources/Assets.car
index c3e95ffb..7c2bc0fd 100644
Binary files a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/Threads_Threads.bundle/Contents/Resources/Assets.car and b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/Resources/Threads_Threads.bundle/Contents/Resources/Assets.car differ
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/_CodeSignature/CodeResources b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/_CodeSignature/CodeResources
index 2eaeeed0..7bf7364a 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/_CodeSignature/CodeResources
+++ b/LinkKit.xcframework/ios-arm64_x86_64-maccatalyst/LinkKit.framework/Versions/A/_CodeSignature/CodeResources
@@ -6,7 +6,11 @@
Resources/Info.plist
- SPgDEjL9kIdntAjd7hEQ3ZEpBEM=
+ 7DX2E6JLcAZv0zpd8WYJuTAKle4=
+
+ Resources/PrivacyInfo.xcprivacy
+
+ 6PyG/Sn5jh81qqGDYJ701GSxHBw=
files2
@@ -15,7 +19,7 @@
hash2
- vqnzZPI41n2ZQQY63LHowk8rbPfXIjnu6ZpGjuSCDQI=
+ 859msMZuRdsutPxZl0FcpOABVeJiUSumL3VxkJf0mt0=
Headers/LinkKit.h
@@ -36,91 +40,98 @@
hash2
- BNrneXh4OXdjGtuiNfYw4nM/NULFb/hK7BcRSjMUTHg=
+ cbaLsB1lwHgFlqTBdf/GFg1luH0OMh6iq6EU5/NZrWE=
Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.abi.json
hash2
- wa74SpA6k109z1DWBgEDhAfdlF7Wsyxpczfgy7LP8gM=
+ Hs7rl80um4JErw8eEBxAXEb63zMwlIH1feYp72V+RtI=
Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface
hash2
- OLwKzTC9bWH4Z0U9Tp2hUKz+Hfun7bHdSR9/Yr47tTE=
+ c2s0EdmnRKMIwOprB0GDZlZkJ0hk6nue9RDcyppBQVU=
Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc
hash2
- KXU2fgL1WMbhi1ZkPxOG5VebkESO/1K2/j8z68QO//o=
+ +s/wDY0SR4V1IkX41F058V2mRlFkcG02VE1tx14fPmo=
Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface
hash2
- OLwKzTC9bWH4Z0U9Tp2hUKz+Hfun7bHdSR9/Yr47tTE=
+ c2s0EdmnRKMIwOprB0GDZlZkJ0hk6nue9RDcyppBQVU=
Modules/LinkKit.swiftmodule/arm64-apple-ios-macabi.swiftmodule
hash2
- N5rZdkW+wNEMcujG64Za6SPARgYpz9pGvFqUqfJ4hiM=
+ pdqt/dtodh3TmkMOr1vuD0+Vauq4DM9UljAgo8zWUBc=
Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.abi.json
hash2
- wa74SpA6k109z1DWBgEDhAfdlF7Wsyxpczfgy7LP8gM=
+ Hs7rl80um4JErw8eEBxAXEb63zMwlIH1feYp72V+RtI=
Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface
hash2
- IKTA8t+A5x7ov7WWbwELjlrzeUqKSe+DQPbukljMylY=
+ Y3Q4TRt560wNreOWk2R4FLg+wcMldrSZB4kqeaTzkZo=
Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc
hash2
- oJ2A1k6b8Z3IdJa93+w3dNm95OYdGBLtprETQmut40I=
+ NL5MG1as9svDFaSqQRg+B+8VTUaBUMp+6r+K2oYZPR8=
Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface
hash2
- IKTA8t+A5x7ov7WWbwELjlrzeUqKSe+DQPbukljMylY=
+ Y3Q4TRt560wNreOWk2R4FLg+wcMldrSZB4kqeaTzkZo=
Modules/LinkKit.swiftmodule/x86_64-apple-ios-macabi.swiftmodule
hash2
- MC8b1+gIJcHnMSsZwwnZEIoPYu4Ag61d+pPMZpzJnco=
+ N+N67CtLtzJdY8HWZuLSoKEOYCZqDSEKihc1MNxbJAw=
Modules/module.modulemap
hash2
- wJJZf3FpGVwt99rfoVFDFn44HBh4e6QdY4RHWn1vgyY=
+ +Cw8rJc7sIJTDYNZCWunJtWuNxIwF0q/SqcPv7cKwnM=
Resources/Info.plist
hash2
- C4sUf4Pyjq0rsZtVUw9SnSXuw9rFtwzN8UnwTJ8socs=
+ fXr74V7yZoJd750p3qR50zcq624EKgWEKli6xFJHXYc=
+
+
+ Resources/PrivacyInfo.xcprivacy
+
+ hash2
+
+ 3I1+H5p9p/M4HzB0a1kgbuYs4iW2n+O8u2YjT4RZvjU=
diff --git a/LinkKit.xcframework/ios-arm64_x86_64-simulator/LinkKit.framework/Headers/LinkKit-Swift.h b/LinkKit.xcframework/ios-arm64_x86_64-simulator/LinkKit.framework/Headers/LinkKit-Swift.h
index bfc5566d..ec4e96ae 100644
--- a/LinkKit.xcframework/ios-arm64_x86_64-simulator/LinkKit.framework/Headers/LinkKit-Swift.h
+++ b/LinkKit.xcframework/ios-arm64_x86_64-simulator/LinkKit.framework/Headers/LinkKit-Swift.h
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
-// Generated by Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
+// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
#ifndef LINKKIT_SWIFT_H
#define LINKKIT_SWIFT_H
#pragma clang diagnostic push
@@ -23,7 +23,6 @@
# include
#endif
-#pragma clang diagnostic ignored "-Wduplicate-method-match"
#pragma clang diagnostic ignored "-Wauto-import"
#if defined(__OBJC__)
#include
@@ -32,10 +31,30 @@
#include
#include
#include
+#include
+#include
+#include
+#include
#else
#include
#include
#include
+#include
+#endif
+#if defined(__cplusplus)
+#if defined(__arm64e__) && __has_include()
+# include
+#else
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
+# ifndef __ptrauth_swift_value_witness_function_pointer
+# define __ptrauth_swift_value_witness_function_pointer(x)
+# endif
+# ifndef __ptrauth_swift_class_method_pointer
+# define __ptrauth_swift_class_method_pointer(x)
+# endif
+#pragma clang diagnostic pop
+#endif
#endif
#if !defined(SWIFT_TYPEDEFS)
@@ -71,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# if __has_feature(objc_class_property)
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
# else
-# define SWIFT_CLASS_PROPERTY(...)
+# define SWIFT_CLASS_PROPERTY(...)
# endif
#endif
-
-#if __has_attribute(objc_runtime_name)
-# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
-#else
-# define SWIFT_RUNTIME_NAME(X)
+#if !defined(SWIFT_RUNTIME_NAME)
+# if __has_attribute(objc_runtime_name)
+# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
+# else
+# define SWIFT_RUNTIME_NAME(X)
+# endif
#endif
-#if __has_attribute(swift_name)
-# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
-#else
-# define SWIFT_COMPILE_NAME(X)
+#if !defined(SWIFT_COMPILE_NAME)
+# if __has_attribute(swift_name)
+# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
+# else
+# define SWIFT_COMPILE_NAME(X)
+# endif
#endif
-#if __has_attribute(objc_method_family)
-# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
-#else
-# define SWIFT_METHOD_FAMILY(X)
+#if !defined(SWIFT_METHOD_FAMILY)
+# if __has_attribute(objc_method_family)
+# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
+# else
+# define SWIFT_METHOD_FAMILY(X)
+# endif
#endif
-#if __has_attribute(noescape)
-# define SWIFT_NOESCAPE __attribute__((noescape))
-#else
-# define SWIFT_NOESCAPE
+#if !defined(SWIFT_NOESCAPE)
+# if __has_attribute(noescape)
+# define SWIFT_NOESCAPE __attribute__((noescape))
+# else
+# define SWIFT_NOESCAPE
+# endif
#endif
-#if __has_attribute(ns_consumed)
-# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
-#else
-# define SWIFT_RELEASES_ARGUMENT
+#if !defined(SWIFT_RELEASES_ARGUMENT)
+# if __has_attribute(ns_consumed)
+# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
+# else
+# define SWIFT_RELEASES_ARGUMENT
+# endif
#endif
-#if __has_attribute(warn_unused_result)
-# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
-#else
-# define SWIFT_WARN_UNUSED_RESULT
+#if !defined(SWIFT_WARN_UNUSED_RESULT)
+# if __has_attribute(warn_unused_result)
+# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
+# else
+# define SWIFT_WARN_UNUSED_RESULT
+# endif
#endif
-#if __has_attribute(noreturn)
-# define SWIFT_NORETURN __attribute__((noreturn))
-#else
-# define SWIFT_NORETURN
+#if !defined(SWIFT_NORETURN)
+# if __has_attribute(noreturn)
+# define SWIFT_NORETURN __attribute__((noreturn))
+# else
+# define SWIFT_NORETURN
+# endif
#endif
#if !defined(SWIFT_CLASS_EXTRA)
-# define SWIFT_CLASS_EXTRA
+# define SWIFT_CLASS_EXTRA
#endif
#if !defined(SWIFT_PROTOCOL_EXTRA)
-# define SWIFT_PROTOCOL_EXTRA
+# define SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_ENUM_EXTRA)
-# define SWIFT_ENUM_EXTRA
+# define SWIFT_ENUM_EXTRA
#endif
#if !defined(SWIFT_CLASS)
# if __has_attribute(objc_subclassing_restricted)
@@ -137,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
# endif
#endif
-
#if !defined(SWIFT_PROTOCOL)
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
#endif
-
#if !defined(SWIFT_EXTENSION)
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
#endif
-
#if !defined(OBJC_DESIGNATED_INITIALIZER)
# if __has_attribute(objc_designated_initializer)
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
# else
-# define OBJC_DESIGNATED_INITIALIZER
+# define OBJC_DESIGNATED_INITIALIZER
# endif
#endif
#if !defined(SWIFT_ENUM_ATTR)
-# if defined(__has_attribute) && __has_attribute(enum_extensibility)
+# if __has_attribute(enum_extensibility)
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
# else
-# define SWIFT_ENUM_ATTR(_extensibility)
+# define SWIFT_ENUM_ATTR(_extensibility)
# endif
#endif
#if !defined(SWIFT_ENUM)
@@ -187,14 +216,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(SWIFT_DEPRECATED_MSG)
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
#endif
-#if __has_feature(attribute_diagnose_if_objc)
-# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
-#else
-# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
+#if !defined(SWIFT_DEPRECATED_OBJC)
+# if __has_feature(attribute_diagnose_if_objc)
+# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
+# else
+# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
+# endif
#endif
#if defined(__OBJC__)
#if !defined(IBSegueAction)
-# define IBSegueAction
+# define IBSegueAction
#endif
#endif
#if !defined(SWIFT_EXTERN)
@@ -207,26 +238,42 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(SWIFT_CALL)
# define SWIFT_CALL __attribute__((swiftcall))
#endif
+#if !defined(SWIFT_INDIRECT_RESULT)
+# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
+#endif
+#if !defined(SWIFT_CONTEXT)
+# define SWIFT_CONTEXT __attribute__((swift_context))
+#endif
+#if !defined(SWIFT_ERROR_RESULT)
+# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
+#endif
#if defined(__cplusplus)
-#if !defined(SWIFT_NOEXCEPT)
# define SWIFT_NOEXCEPT noexcept
-#endif
#else
-#if !defined(SWIFT_NOEXCEPT)
# define SWIFT_NOEXCEPT
#endif
+#if !defined(SWIFT_C_INLINE_THUNK)
+# if __has_attribute(always_inline)
+# if __has_attribute(nodebug)
+# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
+# else
+# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
+# endif
+# else
+# define SWIFT_C_INLINE_THUNK inline
+# endif
#endif
-#if defined(__cplusplus)
-#if !defined(SWIFT_CXX_INT_DEFINED)
-#define SWIFT_CXX_INT_DEFINED
-namespace swift {
-using Int = ptrdiff_t;
-using UInt = size_t;
-}
+#if defined(_WIN32)
+#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
+# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
+#endif
+#else
+#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
+# define SWIFT_IMPORT_STDLIB_SYMBOL
#endif
#endif
#if defined(__OBJC__)
-#if __has_feature(modules)
+#if __has_feature(objc_modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
@@ -285,19 +332,15 @@ SWIFT_CLASS("_TtC7LinkKit27EmbeddedSearchAndSelectView")
-
-
@class PLKLinkTokenConfiguration;
@class NSError;
@protocol PLKHandler;
-@class PLKLinkPublicKeyConfiguration;
@class NSString;
/// Plaid is the main entrypoint for the Plaid Link iOS SDK.
SWIFT_CLASS("_TtC7LinkKit8PLKPlaid")
@interface PLKPlaid : NSObject
+ (id _Nullable)createWithLinkTokenConfiguration:(PLKLinkTokenConfiguration * _Nonnull)linkTokenConfiguration error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
-+ (id _Nullable)createWithLinkPublicKeyConfiguration:(PLKLinkPublicKeyConfiguration * _Nonnull)linkPublicKeyConfiguration error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
/// The version of the Plaid Link iOS SDK.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull sdkVersion;)
+ (NSString * _Nonnull)sdkVersion SWIFT_WARN_UNUSED_RESULT;
@@ -305,17 +348,17 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No
@end
-#endif
-#if defined(__cplusplus)
#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
+#if defined(__cplusplus)
+#endif
#pragma clang diagnostic pop
#endif
#elif defined(__x86_64__) && __x86_64__
-// Generated by Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
+// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
#ifndef LINKKIT_SWIFT_H
#define LINKKIT_SWIFT_H
#pragma clang diagnostic push
@@ -338,7 +381,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No
# include